Code source

Replicated code from Jenny Trickey’s repo here

Trip/drift: CalCurCEAS_2024_011

Summaries generated: 2025 Jun 03 20:19 UTC

Setup

Load needed libraries.

# load all libraries
devtools::install_github('taikisan21/PAMpal')
library(PAMpal)
# library(kableExtra) # known bug with R ver 4.3.0 so install from github
devtools::install_github('kupietz/kableExtra')
library(kableExtra)
library(ggplot2)
library(RSQLite)
library(tuneR)
# library(wesanderson)
library(here)
library(DBI)

# I don't think we need these but saving here in case
library(dplyr)
# library(tcltk)
# library(manipulate)

Set user-defined variables.

# name project
# ProjID <- 'MHI UxS Glider Project'

# combine trip, recorder, pg version (all defined in YAML) to single run string
# dbFileStr <- paste0(params$mission, '_', params$drift, '_Kogia_', params$pgver)

# define subfolder paths based on selected analysis folder and trip strings
# path_to_db <- file.path(params$path_pg, 'Database')
# path_to_binaries <- file.path(params$path_pg, 'Binaries', params$drift)
path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main binaries folder")
# assemble some file names
# pamguard database
# dbFile <- file.path(path_to_db, paste0(dbFileStr, '.sqlite3'))
dbFile <- file.choose()
# dbFile <- choose.files(default = "", caption = "Select database file", multi = FALSE)
# already processed acoustic study 'dets' file
detsFile <- file.path(params$path_dets, paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_Filtered.rdata'))
detsFiltFile <- file.path(params$path_dets, 
                          paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_', params$channelStr, '.rdata'))
# specify calibration file
# calFile <- params$calFile # pull from YAML

# set path to reference spectra if will be used
path_to_refSpec <- file.path(params$path_to_refSpec) # pull from YAML
# specify which reference spectra to plot
# refSpecList = c('Gm', 'Pc')
refSpecList <- params$refSpecList # pull from YAML
refSpecSp <- params$refSpecSp


# ALTERNATIVE SELECT PATHS
# path_pg <- choose.dir(default = "", caption = "Select path to pamguard folder that contains databases and binaries folders")
# # select path to database files 
# path_to_db <- choose.dir(default = "", caption = "Select path to folder with all database files") 
# # select path to specific binary drift file
# path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main folder")

# # set up datebase driver
# sqlite <- dbDriver("SQLite") # outdated/no longer supported 

# connect to SQLite database using the newer method
con <- dbConnect(RSQLite::SQLite(), dbname = dbFile)

#Set time zone to UTC
Sys.setenv(TZ = 'UTC')

# reference spectra colors - allows for up to 6 ref specs
# pastel
# rsPalette <- c('#66c2a5', '#fc8d62', '#8da0cb', '#e78ac3', 
#                '#a6d854', '#ffd92f')
# bold
rsPalette <- c('#1b9e77', '#d95f02', '#7570b3', '#e7298a', 
               '#66a61e', '#e6ab02')

Define needed functions

Source some external functions

source(here::here('_code/functions', 'loadMultiBinaries.R'))
source(here::here('_code/functions', 'plotContours.R'))
source(here::here('_code/functions', 'clickSummary.R'))
source(here::here('_code/functions', 'whistleSummary.R'))

# if not using Rproj/here package use:
# source(file.path(params$path_code, 'R', 'functions', 'loadMultiBinaries.R'))

Load and prep AcousticStudies

If already created, load an existing dets PAMpal AcousticStudy object for event processing. We need to load both the unfiltered dets and filtered detsFilt AcousticStudies.

# load existing dets AcousticStudy (created with 
# workflow_generate_acousticStudies.R)
# load(detFile)
if (file.exists(detsFile)){
  dets <- readRDS(detsFile)
  cat('Loaded', detsFile, '\n')
} else {
  cat('No AcousticStudy \'dets\' file available', '\n')
}
## Loaded Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_011/CalCurCEAS_2024_011_Filtered.rdata
if (file.exists(detsFiltFile)){
  detsFilt <- readRDS(detsFiltFile)
  cat('Loaded', detsFiltFile, '\n')
} else {
  cat('No AcousticStudy \'detsFilt\' file available', '\n')
}
## Loaded Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_011/CalCurCEAS_2024_011_ch1.rdata
# summarize how many events
nEvents <- length(names(PAMpal::events(dets)))
# number of events may change after filtering (all clicks may be filtered out)
nEventsFilt <- length(names(PAMpal::events(detsFilt)))

Loaded Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_011/CalCurCEAS_2024_011_Filtered.rdata and Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_011/CalCurCEAS_2024_011_ch1.rdata

## Updated the locations of 1 out of 1 missing database files. 
## Updated the locations of 5123 out of 5123 missing binary files. 
## Updating files in events...
##   |                                                                                                                                       |                                                                                                                               |   0%  |                                                                                                                                       |=                                                                                                                              |   0%  |                                                                                                                                       |=                                                                                                                              |   1%  |                                                                                                                                       |==                                                                                                                             |   1%  |                                                                                                                                       |==                                                                                                                             |   2%  |                                                                                                                                       |===                                                                                                                            |   2%  |                                                                                                                                       |===                                                                                                                            |   3%  |                                                                                                                                       |====                                                                                                                           |   3%  |                                                                                                                                       |====                                                                                                                           |   4%  |                                                                                                                                       |=====                                                                                                                          |   4%  |                                                                                                                                       |======                                                                                                                         |   4%  |                                                                                                                                       |======                                                                                                                         |   5%  |                                                                                                                                       |=======                                                                                                                        |   5%  |                                                                                                                                       |=======                                                                                                                        |   6%  |                                                                                                                                       |========                                                                                                                       |   6%  |                                                                                                                                       |========                                                                                                                       |   7%  |                                                                                                                                       |=========                                                                                                                      |   7%  |                                                                                                                                       |==========                                                                                                                     |   7%  |                                                                                                                                       |==========                                                                                                                     |   8%  |                                                                                                                                       |===========                                                                                                                    |   8%  |                                                                                                                                       |===========                                                                                                                    |   9%  |                                                                                                                                       |============                                                                                                                   |   9%  |                                                                                                                                       |============                                                                                                                   |  10%  |                                                                                                                                       |=============                                                                                                                  |  10%  |                                                                                                                                       |=============                                                                                                                  |  11%  |                                                                                                                                       |==============                                                                                                                 |  11%  |                                                                                                                                       |===============                                                                                                                |  11%  |                                                                                                                                       |===============                                                                                                                |  12%  |                                                                                                                                       |================                                                                                                               |  12%  |                                                                                                                                       |================                                                                                                               |  13%  |                                                                                                                                       |=================                                                                                                              |  13%  |                                                                                                                                       |=================                                                                                                              |  14%  |                                                                                                                                       |==================                                                                                                             |  14%  |                                                                                                                                       |==================                                                                                                             |  15%  |                                                                                                                                       |===================                                                                                                            |  15%  |                                                                                                                                       |====================                                                                                                           |  15%  |                                                                                                                                       |====================                                                                                                           |  16%  |                                                                                                                                       |=====================                                                                                                          |  16%  |                                                                                                                                       |=====================                                                                                                          |  17%  |                                                                                                                                       |======================                                                                                                         |  17%  |                                                                                                                                       |======================                                                                                                         |  18%  |                                                                                                                                       |=======================                                                                                                        |  18%  |                                                                                                                                       |=======================                                                                                                        |  19%  |                                                                                                                                       |========================                                                                                                       |  19%  |                                                                                                                                       |=========================                                                                                                      |  19%  |                                                                                                                                       |=========================                                                                                                      |  20%  |                                                                                                                                       |==========================                                                                                                     |  20%  |                                                                                                                                       |==========================                                                                                                     |  21%  |                                                                                                                                       |===========================                                                                                                    |  21%  |                                                                                                                                       |===========================                                                                                                    |  22%  |                                                                                                                                       |============================                                                                                                   |  22%  |                                                                                                                                       |=============================                                                                                                  |  22%  |                                                                                                                                       |=============================                                                                                                  |  23%  |                                                                                                                                       |==============================                                                                                                 |  23%  |                                                                                                                                       |==============================                                                                                                 |  24%  |                                                                                                                                       |===============================                                                                                                |  24%  |                                                                                                                                       |===============================                                                                                                |  25%  |                                                                                                                                       |================================                                                                                               |  25%  |                                                                                                                                       |================================                                                                                               |  26%  |                                                                                                                                       |=================================                                                                                              |  26%  |                                                                                                                                       |==================================                                                                                             |  26%  |                                                                                                                                       |==================================                                                                                             |  27%  |                                                                                                                                       |===================================                                                                                            |  27%  |                                                                                                                                       |===================================                                                                                            |  28%  |                                                                                                                                       |====================================                                                                                           |  28%  |                                                                                                                                       |====================================                                                                                           |  29%  |                                                                                                                                       |=====================================                                                                                          |  29%  |                                                                                                                                       |=====================================                                                                                          |  30%  |                                                                                                                                       |======================================                                                                                         |  30%  |                                                                                                                                       |=======================================                                                                                        |  30%  |                                                                                                                                       |=======================================                                                                                        |  31%  |                                                                                                                                       |========================================                                                                                       |  31%  |                                                                                                                                       |========================================                                                                                       |  32%  |                                                                                                                                       |=========================================                                                                                      |  32%  |                                                                                                                                       |=========================================                                                                                      |  33%  |                                                                                                                                       |==========================================                                                                                     |  33%  |                                                                                                                                       |===========================================                                                                                    |  33%  |                                                                                                                                       |===========================================                                                                                    |  34%  |                                                                                                                                       |============================================                                                                                   |  34%  |                                                                                                                                       |============================================                                                                                   |  35%  |                                                                                                                                       |=============================================                                                                                  |  35%  |                                                                                                                                       |=============================================                                                                                  |  36%  |                                                                                                                                       |==============================================                                                                                 |  36%  |                                                                                                                                       |==============================================                                                                                 |  37%  |                                                                                                                                       |===============================================                                                                                |  37%  |                                                                                                                                       |================================================                                                                               |  37%  |                                                                                                                                       |================================================                                                                               |  38%  |                                                                                                                                       |=================================================                                                                              |  38%  |                                                                                                                                       |=================================================                                                                              |  39%  |                                                                                                                                       |==================================================                                                                             |  39%  |                                                                                                                                       |==================================================                                                                             |  40%  |                                                                                                                                       |===================================================                                                                            |  40%  |                                                                                                                                       |===================================================                                                                            |  41%  |                                                                                                                                       |====================================================                                                                           |  41%  |                                                                                                                                       |=====================================================                                                                          |  41%  |                                                                                                                                       |=====================================================                                                                          |  42%  |                                                                                                                                       |======================================================                                                                         |  42%  |                                                                                                                                       |======================================================                                                                         |  43%  |                                                                                                                                       |=======================================================                                                                        |  43%  |                                                                                                                                       |=======================================================                                                                        |  44%  |                                                                                                                                       |========================================================                                                                       |  44%  |                                                                                                                                       |=========================================================                                                                      |  44%  |                                                                                                                                       |=========================================================                                                                      |  45%  |                                                                                                                                       |==========================================================                                                                     |  45%  |                                                                                                                                       |==========================================================                                                                     |  46%  |                                                                                                                                       |===========================================================                                                                    |  46%  |                                                                                                                                       |===========================================================                                                                    |  47%  |                                                                                                                                       |============================================================                                                                   |  47%  |                                                                                                                                       |============================================================                                                                   |  48%  |                                                                                                                                       |=============================================================                                                                  |  48%  |                                                                                                                                       |==============================================================                                                                 |  48%  |                                                                                                                                       |==============================================================                                                                 |  49%  |                                                                                                                                       |===============================================================                                                                |  49%  |                                                                                                                                       |===============================================================                                                                |  50%  |                                                                                                                                       |================================================================                                                               |  50%  |                                                                                                                                       |================================================================                                                               |  51%  |                                                                                                                                       |=================================================================                                                              |  51%  |                                                                                                                                       |=================================================================                                                              |  52%  |                                                                                                                                       |==================================================================                                                             |  52%  |                                                                                                                                       |===================================================================                                                            |  52%  |                                                                                                                                       |===================================================================                                                            |  53%  |                                                                                                                                       |====================================================================                                                           |  53%  |                                                                                                                                       |====================================================================                                                           |  54%  |                                                                                                                                       |=====================================================================                                                          |  54%  |                                                                                                                                       |=====================================================================                                                          |  55%  |                                                                                                                                       |======================================================================                                                         |  55%  |                                                                                                                                       |======================================================================                                                         |  56%  |                                                                                                                                       |=======================================================================                                                        |  56%  |                                                                                                                                       |========================================================================                                                       |  56%  |                                                                                                                                       |========================================================================                                                       |  57%  |                                                                                                                                       |=========================================================================                                                      |  57%  |                                                                                                                                       |=========================================================================                                                      |  58%  |                                                                                                                                       |==========================================================================                                                     |  58%  |                                                                                                                                       |==========================================================================                                                     |  59%  |                                                                                                                                       |===========================================================================                                                    |  59%  |                                                                                                                                       |============================================================================                                                   |  59%  |                                                                                                                                       |============================================================================                                                   |  60%  |                                                                                                                                       |=============================================================================                                                  |  60%  |                                                                                                                                       |=============================================================================                                                  |  61%  |                                                                                                                                       |==============================================================================                                                 |  61%  |                                                                                                                                       |==============================================================================                                                 |  62%  |                                                                                                                                       |===============================================================================                                                |  62%  |                                                                                                                                       |===============================================================================                                                |  63%  |                                                                                                                                       |================================================================================                                               |  63%  |                                                                                                                                       |=================================================================================                                              |  63%  |                                                                                                                                       |=================================================================================                                              |  64%  |                                                                                                                                       |==================================================================================                                             |  64%  |                                                                                                                                       |==================================================================================                                             |  65%  |                                                                                                                                       |===================================================================================                                            |  65%  |                                                                                                                                       |===================================================================================                                            |  66%  |                                                                                                                                       |====================================================================================                                           |  66%  |                                                                                                                                       |====================================================================================                                           |  67%  |                                                                                                                                       |=====================================================================================                                          |  67%  |                                                                                                                                       |======================================================================================                                         |  67%  |                                                                                                                                       |======================================================================================                                         |  68%  |                                                                                                                                       |=======================================================================================                                        |  68%  |                                                                                                                                       |=======================================================================================                                        |  69%  |                                                                                                                                       |========================================================================================                                       |  69%  |                                                                                                                                       |========================================================================================                                       |  70%  |                                                                                                                                       |=========================================================================================                                      |  70%  |                                                                                                                                       |==========================================================================================                                     |  70%  |                                                                                                                                       |==========================================================================================                                     |  71%  |                                                                                                                                       |===========================================================================================                                    |  71%  |                                                                                                                                       |===========================================================================================                                    |  72%  |                                                                                                                                       |============================================================================================                                   |  72%  |                                                                                                                                       |============================================================================================                                   |  73%  |                                                                                                                                       |=============================================================================================                                  |  73%  |                                                                                                                                       |=============================================================================================                                  |  74%  |                                                                                                                                       |==============================================================================================                                 |  74%  |                                                                                                                                       |===============================================================================================                                |  74%  |                                                                                                                                       |===============================================================================================                                |  75%  |                                                                                                                                       |================================================================================================                               |  75%  |                                                                                                                                       |================================================================================================                               |  76%  |                                                                                                                                       |=================================================================================================                              |  76%  |                                                                                                                                       |=================================================================================================                              |  77%  |                                                                                                                                       |==================================================================================================                             |  77%  |                                                                                                                                       |==================================================================================================                             |  78%  |                                                                                                                                       |===================================================================================================                            |  78%  |                                                                                                                                       |====================================================================================================                           |  78%  |                                                                                                                                       |====================================================================================================                           |  79%  |                                                                                                                                       |=====================================================================================================                          |  79%  |                                                                                                                                       |=====================================================================================================                          |  80%  |                                                                                                                                       |======================================================================================================                         |  80%  |                                                                                                                                       |======================================================================================================                         |  81%  |                                                                                                                                       |=======================================================================================================                        |  81%  |                                                                                                                                       |========================================================================================================                       |  81%  |                                                                                                                                       |========================================================================================================                       |  82%  |                                                                                                                                       |=========================================================================================================                      |  82%  |                                                                                                                                       |=========================================================================================================                      |  83%  |                                                                                                                                       |==========================================================================================================                     |  83%  |                                                                                                                                       |==========================================================================================================                     |  84%  |                                                                                                                                       |===========================================================================================================                    |  84%  |                                                                                                                                       |===========================================================================================================                    |  85%  |                                                                                                                                       |============================================================================================================                   |  85%  |                                                                                                                                       |=============================================================================================================                  |  85%  |                                                                                                                                       |=============================================================================================================                  |  86%  |                                                                                                                                       |==============================================================================================================                 |  86%  |                                                                                                                                       |==============================================================================================================                 |  87%  |                                                                                                                                       |===============================================================================================================                |  87%  |                                                                                                                                       |===============================================================================================================                |  88%  |                                                                                                                                       |================================================================================================================               |  88%  |                                                                                                                                       |================================================================================================================               |  89%  |                                                                                                                                       |=================================================================================================================              |  89%  |                                                                                                                                       |==================================================================================================================             |  89%  |                                                                                                                                       |==================================================================================================================             |  90%  |                                                                                                                                       |===================================================================================================================            |  90%  |                                                                                                                                       |===================================================================================================================            |  91%  |                                                                                                                                       |====================================================================================================================           |  91%  |                                                                                                                                       |====================================================================================================================           |  92%  |                                                                                                                                       |=====================================================================================================================          |  92%  |                                                                                                                                       |=====================================================================================================================          |  93%  |                                                                                                                                       |======================================================================================================================         |  93%  |                                                                                                                                       |=======================================================================================================================        |  93%  |                                                                                                                                       |=======================================================================================================================        |  94%  |                                                                                                                                       |========================================================================================================================       |  94%  |                                                                                                                                       |========================================================================================================================       |  95%  |                                                                                                                                       |=========================================================================================================================      |  95%  |                                                                                                                                       |=========================================================================================================================      |  96%  |                                                                                                                                       |==========================================================================================================================     |  96%  |                                                                                                                                       |===========================================================================================================================    |  96%  |                                                                                                                                       |===========================================================================================================================    |  97%  |                                                                                                                                       |============================================================================================================================   |  97%  |                                                                                                                                       |============================================================================================================================   |  98%  |                                                                                                                                       |=============================================================================================================================  |  98%  |                                                                                                                                       |=============================================================================================================================  |  99%  |                                                                                                                                       |============================================================================================================================== |  99%  |                                                                                                                                       |============================================================================================================================== | 100%  |                                                                                                                                       |===============================================================================================================================| 100%
## Updated the locations of 1 out of 1 missing database files. 
## Updated the locations of 5123 out of 5123 missing binary files. 
## Updating files in events...
##   |                                                                                                                                       |                                                                                                                               |   0%  |                                                                                                                                       |=                                                                                                                              |   0%  |                                                                                                                                       |=                                                                                                                              |   1%  |                                                                                                                                       |==                                                                                                                             |   1%  |                                                                                                                                       |==                                                                                                                             |   2%  |                                                                                                                                       |===                                                                                                                            |   2%  |                                                                                                                                       |===                                                                                                                            |   3%  |                                                                                                                                       |====                                                                                                                           |   3%  |                                                                                                                                       |====                                                                                                                           |   4%  |                                                                                                                                       |=====                                                                                                                          |   4%  |                                                                                                                                       |======                                                                                                                         |   4%  |                                                                                                                                       |======                                                                                                                         |   5%  |                                                                                                                                       |=======                                                                                                                        |   5%  |                                                                                                                                       |=======                                                                                                                        |   6%  |                                                                                                                                       |========                                                                                                                       |   6%  |                                                                                                                                       |========                                                                                                                       |   7%  |                                                                                                                                       |=========                                                                                                                      |   7%  |                                                                                                                                       |==========                                                                                                                     |   7%  |                                                                                                                                       |==========                                                                                                                     |   8%  |                                                                                                                                       |===========                                                                                                                    |   8%  |                                                                                                                                       |===========                                                                                                                    |   9%  |                                                                                                                                       |============                                                                                                                   |   9%  |                                                                                                                                       |============                                                                                                                   |  10%  |                                                                                                                                       |=============                                                                                                                  |  10%  |                                                                                                                                       |=============                                                                                                                  |  11%  |                                                                                                                                       |==============                                                                                                                 |  11%  |                                                                                                                                       |===============                                                                                                                |  11%  |                                                                                                                                       |===============                                                                                                                |  12%  |                                                                                                                                       |================                                                                                                               |  12%  |                                                                                                                                       |================                                                                                                               |  13%  |                                                                                                                                       |=================                                                                                                              |  13%  |                                                                                                                                       |=================                                                                                                              |  14%  |                                                                                                                                       |==================                                                                                                             |  14%  |                                                                                                                                       |==================                                                                                                             |  15%  |                                                                                                                                       |===================                                                                                                            |  15%  |                                                                                                                                       |====================                                                                                                           |  15%  |                                                                                                                                       |====================                                                                                                           |  16%  |                                                                                                                                       |=====================                                                                                                          |  16%  |                                                                                                                                       |=====================                                                                                                          |  17%  |                                                                                                                                       |======================                                                                                                         |  17%  |                                                                                                                                       |======================                                                                                                         |  18%  |                                                                                                                                       |=======================                                                                                                        |  18%  |                                                                                                                                       |=======================                                                                                                        |  19%  |                                                                                                                                       |========================                                                                                                       |  19%  |                                                                                                                                       |=========================                                                                                                      |  19%  |                                                                                                                                       |=========================                                                                                                      |  20%  |                                                                                                                                       |==========================                                                                                                     |  20%  |                                                                                                                                       |==========================                                                                                                     |  21%  |                                                                                                                                       |===========================                                                                                                    |  21%  |                                                                                                                                       |===========================                                                                                                    |  22%  |                                                                                                                                       |============================                                                                                                   |  22%  |                                                                                                                                       |=============================                                                                                                  |  22%  |                                                                                                                                       |=============================                                                                                                  |  23%  |                                                                                                                                       |==============================                                                                                                 |  23%  |                                                                                                                                       |==============================                                                                                                 |  24%  |                                                                                                                                       |===============================                                                                                                |  24%  |                                                                                                                                       |===============================                                                                                                |  25%  |                                                                                                                                       |================================                                                                                               |  25%  |                                                                                                                                       |================================                                                                                               |  26%  |                                                                                                                                       |=================================                                                                                              |  26%  |                                                                                                                                       |==================================                                                                                             |  26%  |                                                                                                                                       |==================================                                                                                             |  27%  |                                                                                                                                       |===================================                                                                                            |  27%  |                                                                                                                                       |===================================                                                                                            |  28%  |                                                                                                                                       |====================================                                                                                           |  28%  |                                                                                                                                       |====================================                                                                                           |  29%  |                                                                                                                                       |=====================================                                                                                          |  29%  |                                                                                                                                       |=====================================                                                                                          |  30%  |                                                                                                                                       |======================================                                                                                         |  30%  |                                                                                                                                       |=======================================                                                                                        |  30%  |                                                                                                                                       |=======================================                                                                                        |  31%  |                                                                                                                                       |========================================                                                                                       |  31%  |                                                                                                                                       |========================================                                                                                       |  32%  |                                                                                                                                       |=========================================                                                                                      |  32%  |                                                                                                                                       |=========================================                                                                                      |  33%  |                                                                                                                                       |==========================================                                                                                     |  33%  |                                                                                                                                       |===========================================                                                                                    |  33%  |                                                                                                                                       |===========================================                                                                                    |  34%  |                                                                                                                                       |============================================                                                                                   |  34%  |                                                                                                                                       |============================================                                                                                   |  35%  |                                                                                                                                       |=============================================                                                                                  |  35%  |                                                                                                                                       |=============================================                                                                                  |  36%  |                                                                                                                                       |==============================================                                                                                 |  36%  |                                                                                                                                       |==============================================                                                                                 |  37%  |                                                                                                                                       |===============================================                                                                                |  37%  |                                                                                                                                       |================================================                                                                               |  37%  |                                                                                                                                       |================================================                                                                               |  38%  |                                                                                                                                       |=================================================                                                                              |  38%  |                                                                                                                                       |=================================================                                                                              |  39%  |                                                                                                                                       |==================================================                                                                             |  39%  |                                                                                                                                       |==================================================                                                                             |  40%  |                                                                                                                                       |===================================================                                                                            |  40%  |                                                                                                                                       |===================================================                                                                            |  41%  |                                                                                                                                       |====================================================                                                                           |  41%  |                                                                                                                                       |=====================================================                                                                          |  41%  |                                                                                                                                       |=====================================================                                                                          |  42%  |                                                                                                                                       |======================================================                                                                         |  42%  |                                                                                                                                       |======================================================                                                                         |  43%  |                                                                                                                                       |=======================================================                                                                        |  43%  |                                                                                                                                       |=======================================================                                                                        |  44%  |                                                                                                                                       |========================================================                                                                       |  44%  |                                                                                                                                       |=========================================================                                                                      |  44%  |                                                                                                                                       |=========================================================                                                                      |  45%  |                                                                                                                                       |==========================================================                                                                     |  45%  |                                                                                                                                       |==========================================================                                                                     |  46%  |                                                                                                                                       |===========================================================                                                                    |  46%  |                                                                                                                                       |===========================================================                                                                    |  47%  |                                                                                                                                       |============================================================                                                                   |  47%  |                                                                                                                                       |============================================================                                                                   |  48%  |                                                                                                                                       |=============================================================                                                                  |  48%  |                                                                                                                                       |==============================================================                                                                 |  48%  |                                                                                                                                       |==============================================================                                                                 |  49%  |                                                                                                                                       |===============================================================                                                                |  49%  |                                                                                                                                       |===============================================================                                                                |  50%  |                                                                                                                                       |================================================================                                                               |  50%  |                                                                                                                                       |================================================================                                                               |  51%  |                                                                                                                                       |=================================================================                                                              |  51%  |                                                                                                                                       |=================================================================                                                              |  52%  |                                                                                                                                       |==================================================================                                                             |  52%  |                                                                                                                                       |===================================================================                                                            |  52%  |                                                                                                                                       |===================================================================                                                            |  53%  |                                                                                                                                       |====================================================================                                                           |  53%  |                                                                                                                                       |====================================================================                                                           |  54%  |                                                                                                                                       |=====================================================================                                                          |  54%  |                                                                                                                                       |=====================================================================                                                          |  55%  |                                                                                                                                       |======================================================================                                                         |  55%  |                                                                                                                                       |======================================================================                                                         |  56%  |                                                                                                                                       |=======================================================================                                                        |  56%  |                                                                                                                                       |========================================================================                                                       |  56%  |                                                                                                                                       |========================================================================                                                       |  57%  |                                                                                                                                       |=========================================================================                                                      |  57%  |                                                                                                                                       |=========================================================================                                                      |  58%  |                                                                                                                                       |==========================================================================                                                     |  58%  |                                                                                                                                       |==========================================================================                                                     |  59%  |                                                                                                                                       |===========================================================================                                                    |  59%  |                                                                                                                                       |============================================================================                                                   |  59%  |                                                                                                                                       |============================================================================                                                   |  60%  |                                                                                                                                       |=============================================================================                                                  |  60%  |                                                                                                                                       |=============================================================================                                                  |  61%  |                                                                                                                                       |==============================================================================                                                 |  61%  |                                                                                                                                       |==============================================================================                                                 |  62%  |                                                                                                                                       |===============================================================================                                                |  62%  |                                                                                                                                       |===============================================================================                                                |  63%  |                                                                                                                                       |================================================================================                                               |  63%  |                                                                                                                                       |=================================================================================                                              |  63%  |                                                                                                                                       |=================================================================================                                              |  64%  |                                                                                                                                       |==================================================================================                                             |  64%  |                                                                                                                                       |==================================================================================                                             |  65%  |                                                                                                                                       |===================================================================================                                            |  65%  |                                                                                                                                       |===================================================================================                                            |  66%  |                                                                                                                                       |====================================================================================                                           |  66%  |                                                                                                                                       |====================================================================================                                           |  67%  |                                                                                                                                       |=====================================================================================                                          |  67%  |                                                                                                                                       |======================================================================================                                         |  67%  |                                                                                                                                       |======================================================================================                                         |  68%  |                                                                                                                                       |=======================================================================================                                        |  68%  |                                                                                                                                       |=======================================================================================                                        |  69%  |                                                                                                                                       |========================================================================================                                       |  69%  |                                                                                                                                       |========================================================================================                                       |  70%  |                                                                                                                                       |=========================================================================================                                      |  70%  |                                                                                                                                       |==========================================================================================                                     |  70%  |                                                                                                                                       |==========================================================================================                                     |  71%  |                                                                                                                                       |===========================================================================================                                    |  71%  |                                                                                                                                       |===========================================================================================                                    |  72%  |                                                                                                                                       |============================================================================================                                   |  72%  |                                                                                                                                       |============================================================================================                                   |  73%  |                                                                                                                                       |=============================================================================================                                  |  73%  |                                                                                                                                       |=============================================================================================                                  |  74%  |                                                                                                                                       |==============================================================================================                                 |  74%  |                                                                                                                                       |===============================================================================================                                |  74%  |                                                                                                                                       |===============================================================================================                                |  75%  |                                                                                                                                       |================================================================================================                               |  75%  |                                                                                                                                       |================================================================================================                               |  76%  |                                                                                                                                       |=================================================================================================                              |  76%  |                                                                                                                                       |=================================================================================================                              |  77%  |                                                                                                                                       |==================================================================================================                             |  77%  |                                                                                                                                       |==================================================================================================                             |  78%  |                                                                                                                                       |===================================================================================================                            |  78%  |                                                                                                                                       |====================================================================================================                           |  78%  |                                                                                                                                       |====================================================================================================                           |  79%  |                                                                                                                                       |=====================================================================================================                          |  79%  |                                                                                                                                       |=====================================================================================================                          |  80%  |                                                                                                                                       |======================================================================================================                         |  80%  |                                                                                                                                       |======================================================================================================                         |  81%  |                                                                                                                                       |=======================================================================================================                        |  81%  |                                                                                                                                       |========================================================================================================                       |  81%  |                                                                                                                                       |========================================================================================================                       |  82%  |                                                                                                                                       |=========================================================================================================                      |  82%  |                                                                                                                                       |=========================================================================================================                      |  83%  |                                                                                                                                       |==========================================================================================================                     |  83%  |                                                                                                                                       |==========================================================================================================                     |  84%  |                                                                                                                                       |===========================================================================================================                    |  84%  |                                                                                                                                       |===========================================================================================================                    |  85%  |                                                                                                                                       |============================================================================================================                   |  85%  |                                                                                                                                       |=============================================================================================================                  |  85%  |                                                                                                                                       |=============================================================================================================                  |  86%  |                                                                                                                                       |==============================================================================================================                 |  86%  |                                                                                                                                       |==============================================================================================================                 |  87%  |                                                                                                                                       |===============================================================================================================                |  87%  |                                                                                                                                       |===============================================================================================================                |  88%  |                                                                                                                                       |================================================================================================================               |  88%  |                                                                                                                                       |================================================================================================================               |  89%  |                                                                                                                                       |=================================================================================================================              |  89%  |                                                                                                                                       |==================================================================================================================             |  89%  |                                                                                                                                       |==================================================================================================================             |  90%  |                                                                                                                                       |===================================================================================================================            |  90%  |                                                                                                                                       |===================================================================================================================            |  91%  |                                                                                                                                       |====================================================================================================================           |  91%  |                                                                                                                                       |====================================================================================================================           |  92%  |                                                                                                                                       |=====================================================================================================================          |  92%  |                                                                                                                                       |=====================================================================================================================          |  93%  |                                                                                                                                       |======================================================================================================================         |  93%  |                                                                                                                                       |=======================================================================================================================        |  93%  |                                                                                                                                       |=======================================================================================================================        |  94%  |                                                                                                                                       |========================================================================================================================       |  94%  |                                                                                                                                       |========================================================================================================================       |  95%  |                                                                                                                                       |=========================================================================================================================      |  95%  |                                                                                                                                       |=========================================================================================================================      |  96%  |                                                                                                                                       |==========================================================================================================================     |  96%  |                                                                                                                                       |===========================================================================================================================    |  96%  |                                                                                                                                       |===========================================================================================================================    |  97%  |                                                                                                                                       |============================================================================================================================   |  97%  |                                                                                                                                       |============================================================================================================================   |  98%  |                                                                                                                                       |=============================================================================================================================  |  98%  |                                                                                                                                       |=============================================================================================================================  |  99%  |                                                                                                                                       |============================================================================================================================== |  99%  |                                                                                                                                       |============================================================================================================================== | 100%  |                                                                                                                                       |===============================================================================================================================| 100%

Updated file paths to binaries in databases for Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_011/CalCurCEAS_2024_011_Filtered.rdata and Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_011/CalCurCEAS_2024_011_ch1.rdata

Create initial output Event Table CSV

To be used for manual scoring based on report figures.

# set up output data frame
evTable <- data.frame(drift = character(nEvents), id = character(nEvents), 
                      species = character(nEvents), numClicks = numeric(nEvents))
# populate with drift string and event names
evTable$drift <- paste0(params$mission, '_', params$drift)
evTable$id <- names(PAMpal::events(detsFilt))

# get all click data
allClks <- PAMpal::getClickData(detsFilt)
# get the number of clicks for each event
for (iEvent in c(1:nEventsFilt)){
  evTable$numClicks[iEvent] <- length(which(allClks$eventId == evTable$id[iEvent]))
}

# keep only rows/events with at least 200 clicks
evTable <- evTable[which(evTable$numClicks >199),]

# add column for keeping/removing based on median peak frequency
evTable$keep <- FALSE # set all to false, will mark keepers as TRUE in loop

# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets,
                                    paste0('eventTable_', params$mission, '_',
                                           params$drift, '_', Sys.Date(),'.csv')))

1562 events (files) in drift. 244 events have at least 200 clicks. Additional events may be removed if the median peak frequency of all high SNR clicks is less than 6 kHz. The final number of events can be found at the very end of the report.

Load reference spectra, if specified

Load the reference spectra for plotting, if set with refSpecList.

# refSpecList is specified in YAML params. Can be one or multiple species
# for single species specify as char string without quotations e.g., refSpecPc
# for multiple species, specify with call to R and c()
#     e.g., !r c('meanSpecGm', 'refSpecPc_LLHARP')

refSpecs <- NULL
if (!is.null(refSpecList)){
  refSpecs = list()
  for (rs in refSpecList){
    refSpecs[[rs]] = read.csv(file.path(path_to_refSpec, paste0(rs, '.csv')))
  }
}

Event summaries

Loop through each detection event (n = 244) create plots and a table of summary statistics for click and whistle detections. This process uses AcousticStudy objects that have detection data for each event, and also pulls information from the Pamguard binaries associated with each AcousticStudy.

Click plots (other than the SNR plot) only show clicks with SNRs >= 15 dB.

for (iEvent in c(1:nEventsFilt)){
  # iEvent = 6 # for testing
  # ("pagebreak \n")
  
  # extract this event UID string
  eventList <- PAMpal::events(detsFilt)
  eventUID <- names(eventList)[iEvent]
  
  ###### summarize clicks ######
  cl <- clickSummary(detsFilt, eventUID) 
  
  if ((cl$nClicks > 199) && median(cl$goodClicks$peak, na.rm = TRUE) >= 6){
    # keep this in evTable
    evTable$keep[evTable$id == eventUID] <- TRUE
    evTable$medPeakFrq[evTable$id == eventUID] <- median(cl$goodClicks$peak, 
                                                         na.rm = TRUE)
    
    # set header for this event and print time
    cat('\n\n#### Event ID:   ', names(eventList)[iEvent], '\n')
    cat('Time:   ', format(eventList[[eventUID]]@ancillary$grouping$start, 
                           '%Y-%m-%d %H:%M%Z'), ' to ', 
        format(eventList[[eventUID]]@ancillary$grouping$end, '%Y-%m-%d %H:%M%Z'), 
        '\n')
    
    cat('\nEvent contains', nrow(PAMpal::getClickData(dets[[eventUID]])), 
        'original clicks,', paste0('**', cl$nClicks), 'valid clicks** after',
        'filtering.\n')
    cat('\n')
    
    ###### summarize whistles ######
    # wl <- whistleSummary(detsFilt, eventUID)
    # 
    # cat('\nEvent contains', paste0('**', wl$nWhistles), 'whistles**.\n')
    # cat('\n')
    
    ###### click plots and table ######
    
    cat('\n##### Click plots and table\n')
    cat('\n SNR histogram includes all filtered clicks. Other plots contain only', 
        'clicks with SNR >= 15 dB', paste0('(**n = ', cl$nGoodClicks, ' clicks**)'),
        '.\n')
    cat('\n')
    
    
    # if any clicks...
    if (cl$nClicks > 0){
      # histogram of all clicks and SNR >= 15 dB cut off
      xMax <- max(c(15, ceiling(max(cl$snr)) + 2)) # whichever is bigger
      if (any(!is.na(cl$snr))){
        hist(cl$snr, breaks = seq(from = floor(min(cl$snr)), 
                                  to = xMax, by = 2), 
             main = 'Click SNR', sub = '(all filtered clicks)', xlab = 'SNR')
        abline(v = 15, lty = 2, lwd = 2, col = 'red4')
      }
      
    }
    
    # if sufficient good clicks...
    if (cl$nGoodClicks > 0) {
      # histogram of click durations - good clicks only
      subStr <- paste0('(high SNR clicks, n=', cl$nGoodClicks, ')')
      hist(cl$goodClicks$duration, 
           breaks = seq(from = 0, to = max(cl$goodClicks$duration) + 100, 
                        by = 100), main = 'Click duration', sub = subStr,
           xlab = expression(paste('duration [', mu, 's]')))
      abline(v = median(cl$goodClicks$duration), lty = 2, lwd = 2, col = 'black')
      legend('topright', legend = 'median', lty = 2, lwd = 2, col = 'black')
      
      
      cat('\n')
      cat('\n')
      
      
      # Calculate and plot Concatenated and Mean Spectrum for clicks w/ max SNR > 15dB
      # NB: JLKM uses more exaggerated SNR (>40 dB) for BWs bc actual spectra may
      # be noisy for single clicks
      # reducing wl can give more accurate noise floor but 'smoother' spectrum
      # increasing wl will give more exact spectrum but may exclude too many 
      # clicks based on SNR (noise measure will overlap with click output; noise
      # is just measured as same wl from start of binary snippet and binaries 
      # binary snippets are v short)
      # Trial and error - 256 works ok for LLHARP data = 1.28 ms
      # NB: JLKM uses 500 for beaked whales with samp rate 288k
      avgSpec <- PAMpal::calculateAverageSpectra(detsFilt, evNum = eventUID, wl = 256, 
                                         channel = params$channelNum, norm = TRUE,
                                         noise = TRUE, sort = TRUE, snr = 15, 
                                         plot = c(TRUE, FALSE))
      # concatenated spectrogram will get plotted within calculation
      
      # avg spectrum plots separately (bc adding stuff)
      if (!is.null(avgSpec)) {
        # Peak freq as calculated by calculateAvgerageSpectra -for subtitle
        peakFreq <- round(avgSpec$freq[which.max(avgSpec$avgSpec)]/1000, 2)
        
        plot(1, type = 'n', xlim = c(0, 100), ylim = c(min(avgSpec$avgSpec), 0), 
             xlab = 'Frequency (kHz)', ylab = 'Normalized Magnitude (dB)', 
             main = 'Average Spectrum', sub = paste0('Peak: ', peakFreq, 'kHz'))
        # add grid lines for frequency at 10 kHz intervals
        for (iline in ((0:20)*10)) {lines(c(iline,iline), c(-100,10), col="gray")}
        # add template spectra
        if (length(refSpecs) > 0){
          rsCols <- rsPalette[1:length(refSpecs)]
          for (rs in 1:length(refSpecs)){
            rsTmp <- refSpecList[rs]
            rsNorm <- refSpecs[[rsTmp]]
            rsMax <- max(rsNorm$dB)
            rsNorm$dBNorm <- rsNorm$dB - rsMax
            lines(rsNorm$frq, rsNorm$dBNorm, col = rsCols[rs], lwd = 2)
          }
        }
        
        # plot noise
        lines(avgSpec$freq/1000, avgSpec$avgNoise, lty = 3, lwd = 2)
        # plot avg spectrum
        lines(avgSpec$freq/1000, avgSpec$avgSpec, lty = 2, lwd = 3)
        # also plot median spectrum
        medSpec <- 20*log10(apply(avgSpec$allSpec, 1, function(y) {
          median(10^(y/20), na.rm = TRUE)}))
        medSpecNorm <- medSpec - max(medSpec, na.rm = TRUE)
        lines(avgSpec$freq/1000, medSpecNorm, lty = 1, lwd = 3)
        
        # add legend
        if (length(refSpecs) > 0){
          legend(x = 'topright', c(refSpecSp, 'Avg.', 'Med.', 'Noise'),
                 lty = c(rep(1, length(refSpecs)), 2, 1, 3),
                 lwd = c(rep(1, length(refSpecs)), 2, 3, 2),
                 col = c(rsCols, 'black', 'black', 'black'), cex = 0.8)
        } else if (length(refSpecs) == 0){
          legend(x = 'topright', c('Avg.', 'Med.', 'Noise'),
                 lty = c(2, 1, 3), lwd = c(2, 3, 2),
                 col = c('black', 'black', 'black'), cex = 0.8)
        }
      }
      
      
      # NB: JLKM BW approach has additional plots here:
      # IPI
      # Waveform of strongest click
      # Wigner plot
      # We are not including those here because not really useful for FKW, but if
      # interested in adding back in, see:
      #       https://github.com/jlkeating/PAMGuard_Event_Code
      
      
      cat('\n')
      cat('\n')
      
      
      # create median stats table for clicks with -15 dB TK noise cut off
      cat('\n\n Median statistics for', cl$nGoodClicks, 'high SNR clicks with', 
          'SNR >= 15 dB.')
      cat('\n')
      
      cat(knitr::kable(cl$mt, format = 'html', caption = '', align = 'l', 
                       row.names = FALSE) %>%
            kableExtra::kable_styling(bootstrap_options = c('basic', 'condensed'),
                          full_width = F))
      
    }  else { # no good clicks so no summary plots/table
      cat('\nNo clicks of sufficient SNR to plot or summarize.\n')
    }
    
    
    ###### whistle plots and table ######
    # 
    # cat('\n##### Whistle plots and table\n')
    # 
    # # if whistles present ...
    # if (wl$nWhistles > 0) {
    #   # create median stats table for all whistles
    #   # cat('\n\n Median statistics for', wl$nWhistles, 'whistles.')
    #   # cat('\n')
    #   
    #   # plot whistle contours
    #   # map the needed binary files
    #   binFiles <- dets@events[[eventUID]]@files$binaries
    #   wmFileIdx <- grep(pattern = '^.*WhistlesMoans_Whistle_and_Moan.*\\.pgdf$',
    #                     binFiles)
    #   wmFiles <- dets@events[[eventUID]]@files$binaries[wmFileIdx]
    #   
    #   # load them
    #   whBin <- loadMultiBinaries(wmFiles)
    #   # trim to just the event time
    #   whBinEv <- whBin[names(whBin) %in%
    #                      detsFilt[[eventUID]]$Whistle_and_Moan_Detector$UID]
    #   
    #   # #plot - ggplot version/functionized
    #   # pc <- plotContours(whBinEv)
    #   # # print(pc)
    #   # pc + ggtitle(eventUID)
    #   # 
    #   
    #   # get plot limits
    #   # xMax <- 0
    #   # yMax <- 0
    #   # for (wc in 1:length(names(whBinEv))){
    #   #   df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
    #   #                    freq = whBinEv[[wc]]$freq/1000)
    #   #   xMaxTmp <- max(df$time)
    #   #   yMaxTmp <- max(df$freq)
    #   #   if (xMaxTmp > xMax){xMax <- xMaxTmp}
    #   #   if (yMaxTmp > yMax){yMax <- yMaxTmp}
    #   # }
    #   # or use standard max lims
    #   xMax <- 1.5
    #   yMax <- 20
    #   
    #   # plot each line
    #   plot(1, type = 'n', xlim = c(0, round(xMax,2)), ylim = c(0, round(yMax,-1)), 
    #        xlab = 'Time (s)', ylab = 'Frequency (kHz)', 
    #        main = 'Whistle Contours')
    #   # add grid lines for frequency at 0.125 s and 5 kHz intervals
    #   for (iline in (seq(0,2,0.125))) {lines(c(iline,iline), c(-10,60),
    #                                          col="lightgray")}
    #   for (iline in (seq(0,50,5))) {lines(c(-0.5,2.5), c(iline,iline),
    #                                       col="lightgray")}
    #   # loop through each contour
    #   for (wc in 1:length(names(whBinEv))){
    #     df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
    #                      freq = whBinEv[[wc]]$freq/1000)
    #     lines(df$time, df$freq, col = rgb(0,0,0,0.4))
    #   }
    #   
    #   # plot histogram of median frequency
    #   hist(wl$wh$freqMedian/1000, 
    #        breaks = seq(0, ceiling(max(wl$wh$freqMedian/1000)) + 1, 1),
    #        main = 'Histogram of whistle median frequency', 
    #        xlab = 'Median frequency (kHz)')
    #   
    #   cat('\n')
    #   cat('\n')
    #   
    #   cat('Median statistics for n = ', wl$nWhistles, 'whistles.\n')
    #   # create median stats table for all whistles
    #   cat(knitr::kable(wl$mt, format = 'html', caption = '', align = 'l', 
    #                    row.names = FALSE) %>%
    #         kable_styling(bootstrap_options = c('basic', 'condensed'),
    #                       full_width = F))
    #   
    # } else {
    #   cat('\nNo whistles present.\n')
    # }
    
    cat('\n')
    cat('\n\n --- \n\n')
    cat('\n')
  }# num clicks/peak freq check 
} # loop

Event ID: 7518.240917034202.wav

Time: 2024-09-17 03:42UTC to 2024-09-17 03:48UTC

Event contains 678 original clicks, 339 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 183 clicks) .

Median statistics for 183 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.92
Median 10dB Center Frequency [kHz] 6.78
Median 3dB Bandwidth [kHz] (lower-upper) 1.08 (6.22 - 7.48)
Median 10dB Bandwidth [kHz] (lower-upper) 3.62 (4.56 - 8.69)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240917034802.wav

Time: 2024-09-17 03:48UTC to 2024-09-17 03:54UTC

Event contains 646 original clicks, 323 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 185 clicks) .

Median statistics for 185 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.44
Median 10dB Center Frequency [kHz] 7.27
Median 3dB Bandwidth [kHz] (lower-upper) 0.98 (6.88 - 8.02)
Median 10dB Bandwidth [kHz] (lower-upper) 3.47 ( 5.4 - 9.27)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240917035402.wav

Time: 2024-09-17 03:54UTC to 2024-09-17 04:00UTC

Event contains 1498 original clicks, 749 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 419 clicks) .

Median statistics for 419 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.3
Median 10dB Center Frequency [kHz] 7.35
Median 3dB Bandwidth [kHz] (lower-upper) 1.01 (6.75 - 7.89)
Median 10dB Bandwidth [kHz] (lower-upper) 3.55 (5.27 - 9.45)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240917040002.wav

Time: 2024-09-17 04:00UTC to 2024-09-17 04:06UTC

Event contains 1504 original clicks, 752 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 443 clicks) .

Median statistics for 443 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.83
Median 10dB Center Frequency [kHz] 7.68
Median 3dB Bandwidth [kHz] (lower-upper) 1.08 (7.19 - 8.47)
Median 10dB Bandwidth [kHz] (lower-upper) 3.32 (5.67 - 9.45)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240917040602.wav

Time: 2024-09-17 04:06UTC to 2024-09-17 04:12UTC

Event contains 2260 original clicks, 1130 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 685 clicks) .

Median statistics for 685 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.77
Median 10dB Center Frequency [kHz] 6.87
Median 3dB Bandwidth [kHz] (lower-upper) 1.09 (6.13 - 7.42)
Median 10dB Bandwidth [kHz] (lower-upper) 3.64 ( 4.8 - 8.88)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240917041202.wav

Time: 2024-09-17 04:12UTC to 2024-09-17 04:18UTC

Event contains 1910 original clicks, 955 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 617 clicks) .

Median statistics for 617 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 7.04
Median 10dB Center Frequency [kHz] 7.07
Median 3dB Bandwidth [kHz] (lower-upper) 1.11 (6.44 - 7.76)
Median 10dB Bandwidth [kHz] (lower-upper) 3.83 (5.02 - 9.19)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240917041802.wav

Time: 2024-09-17 04:18UTC to 2024-09-17 04:24UTC

Event contains 2270 original clicks, 1135 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 780 clicks) .

Median statistics for 780 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.96
Median 10dB Center Frequency [kHz] 6.94
Median 3dB Bandwidth [kHz] (lower-upper) 1.13 (6.29 - 7.63)
Median 10dB Bandwidth [kHz] (lower-upper) 3.93 (4.84 - 8.92)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240917042402.wav

Time: 2024-09-17 04:24UTC to 2024-09-17 04:30UTC

Event contains 1840 original clicks, 920 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 657 clicks) .

Median statistics for 657 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.91
Median 10dB Center Frequency [kHz] 7.04
Median 3dB Bandwidth [kHz] (lower-upper) 1.24 ( 6.2 - 7.72)
Median 10dB Bandwidth [kHz] (lower-upper) 3.73 (4.71 - 8.96)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240917043002.wav

Time: 2024-09-17 04:30UTC to 2024-09-17 04:36UTC

Event contains 2628 original clicks, 1314 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 930 clicks) .

Median statistics for 930 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.99
Median 10dB Center Frequency [kHz] 6.98
Median 3dB Bandwidth [kHz] (lower-upper) 1.26 (6.28 - 7.7)
Median 10dB Bandwidth [kHz] (lower-upper) 3.7 (4.88 - 9.01)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240917043602.wav

Time: 2024-09-17 04:36UTC to 2024-09-17 04:42UTC

Event contains 3658 original clicks, 1829 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1361 clicks) .

Median statistics for 1361 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.34
Median 10dB Center Frequency [kHz] 7.31
Median 3dB Bandwidth [kHz] (lower-upper) 1.21 (6.58 - 8)
Median 10dB Bandwidth [kHz] (lower-upper) 3.67 ( 5.2 - 9.25)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240917044202.wav

Time: 2024-09-17 04:42UTC to 2024-09-17 04:48UTC

Event contains 4300 original clicks, 2150 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1546 clicks) .

Median statistics for 1546 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.4
Median 10dB Center Frequency [kHz] 7.35
Median 3dB Bandwidth [kHz] (lower-upper) 1.23 (6.64 - 8.07)
Median 10dB Bandwidth [kHz] (lower-upper) 4.11 (5.21 - 9.61)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240917044802.wav

Time: 2024-09-17 04:48UTC to 2024-09-17 04:54UTC

Event contains 4642 original clicks, 2321 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1792 clicks) .

Median statistics for 1792 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.11
Median 10dB Center Frequency [kHz] 7.31
Median 3dB Bandwidth [kHz] (lower-upper) 1.24 ( 6.3 - 7.92)
Median 10dB Bandwidth [kHz] (lower-upper) 4.08 (5.03 - 9.48)
Median duration [μs] (25-75 percentile) 0 (0 - 16)

Event ID: 7518.240917045402.wav

Time: 2024-09-17 04:54UTC to 2024-09-17 05:00UTC

Event contains 4732 original clicks, 2366 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1789 clicks) .

Median statistics for 1789 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.72
Median 10dB Center Frequency [kHz] 7.01
Median 3dB Bandwidth [kHz] (lower-upper) 1.3 (5.98 - 7.52)
Median 10dB Bandwidth [kHz] (lower-upper) 3.9 (4.61 - 9.12)
Median duration [μs] (25-75 percentile) 0 (0 - 3)

Event ID: 7518.240917050002.wav

Time: 2024-09-17 05:00UTC to 2024-09-17 05:06UTC

Event contains 5634 original clicks, 2817 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2234 clicks) .

Median statistics for 2234 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 7.02
Median 10dB Center Frequency [kHz] 7.1
Median 3dB Bandwidth [kHz] (lower-upper) 1.37 (6.14 - 7.86)
Median 10dB Bandwidth [kHz] (lower-upper) 4.29 (4.57 - 9.42)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7518.240917050602.wav

Time: 2024-09-17 05:06UTC to 2024-09-17 05:12UTC

Event contains 7082 original clicks, 3541 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2753 clicks) .

Median statistics for 2753 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.87
Median 10dB Center Frequency [kHz] 6.92
Median 3dB Bandwidth [kHz] (lower-upper) 1.38 (6.09 - 7.64)
Median 10dB Bandwidth [kHz] (lower-upper) 4.16 (4.57 - 9.12)
Median duration [μs] (25-75 percentile) 0 (0 - 141)

Event ID: 7518.240917051202.wav

Time: 2024-09-17 05:12UTC to 2024-09-17 05:18UTC

Event contains 8138 original clicks, 4069 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3347 clicks) .

Median statistics for 3347 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.71
Median 10dB Center Frequency [kHz] 6.79
Median 3dB Bandwidth [kHz] (lower-upper) 1.62 (5.73 - 7.65)
Median 10dB Bandwidth [kHz] (lower-upper) 4.23 (4.32 - 8.98)
Median duration [μs] (25-75 percentile) 55 (0 - 292)

Event ID: 7518.240917051802.wav

Time: 2024-09-17 05:18UTC to 2024-09-17 05:24UTC

Event contains 8368 original clicks, 4184 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3460 clicks) .

Median statistics for 3460 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.92
Median 10dB Center Frequency [kHz] 7.16
Median 3dB Bandwidth [kHz] (lower-upper) 1.53 (6.04 - 7.77)
Median 10dB Bandwidth [kHz] (lower-upper) 4.63 (4.49 - 9.61)
Median duration [μs] (25-75 percentile) 2.6 (0 - 201)

Event ID: 7518.240917052402.wav

Time: 2024-09-17 05:24UTC to 2024-09-17 05:30UTC

Event contains 5896 original clicks, 2948 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2526 clicks) .

Median statistics for 2526 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.78
Median 10dB Center Frequency [kHz] 7.21
Median 3dB Bandwidth [kHz] (lower-upper) 1.8 (5.58 - 7.9)
Median 10dB Bandwidth [kHz] (lower-upper) 4.75 (4.39 - 9.82)
Median duration [μs] (25-75 percentile) 155 (0 - 404)

Event ID: 7518.240917053002.wav

Time: 2024-09-17 05:30UTC to 2024-09-17 05:36UTC

Event contains 9138 original clicks, 4569 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3891 clicks) .

Median statistics for 3891 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.03
Median 10dB Center Frequency [kHz] 7.35
Median 3dB Bandwidth [kHz] (lower-upper) 1.64 (5.94 - 8.08)
Median 10dB Bandwidth [kHz] (lower-upper) 4.64 (4.32 - 9.93)
Median duration [μs] (25-75 percentile) 123 (0 - 342)

Event ID: 7518.240917053602.wav

Time: 2024-09-17 05:36UTC to 2024-09-17 05:42UTC

Event contains 9842 original clicks, 4921 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4218 clicks) .

Median statistics for 4218 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.99
Median 10dB Center Frequency [kHz] 7.45
Median 3dB Bandwidth [kHz] (lower-upper) 1.6 (5.95 - 8.05)
Median 10dB Bandwidth [kHz] (lower-upper) 5.06 (4.24 - 10.1)
Median duration [μs] (25-75 percentile) 102 (0 - 349)

Event ID: 7518.240917054202.wav

Time: 2024-09-17 05:42UTC to 2024-09-17 05:48UTC

Event contains 14000 original clicks, 7000 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6304 clicks) .

Median statistics for 6304 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.15
Median 10dB Center Frequency [kHz] 7.62
Median 3dB Bandwidth [kHz] (lower-upper) 1.83 (6.07 - 8.21)
Median 10dB Bandwidth [kHz] (lower-upper) 5.22 (4.35 - 10.4)
Median duration [μs] (25-75 percentile) 229 (13 - 1000)

Event ID: 7518.240917054802.wav

Time: 2024-09-17 05:48UTC to 2024-09-17 05:54UTC

Event contains 15334 original clicks, 7667 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6868 clicks) .

Median statistics for 6868 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.29
Median 10dB Center Frequency [kHz] 7.77
Median 3dB Bandwidth [kHz] (lower-upper) 1.85 (6.13 - 8.47)
Median 10dB Bandwidth [kHz] (lower-upper) 5.23 (4.53 - 10.5)
Median duration [μs] (25-75 percentile) 271 (42 - 1000)

Event ID: 7518.240917055402.wav

Time: 2024-09-17 05:54UTC to 2024-09-17 06:00UTC

Event contains 12932 original clicks, 6466 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5843 clicks) .

Median statistics for 5843 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.62
Median 10dB Center Frequency [kHz] 8.02
Median 3dB Bandwidth [kHz] (lower-upper) 1.82 (6.55 - 8.71)
Median 10dB Bandwidth [kHz] (lower-upper) 5.05 (4.75 - 10.8)
Median duration [μs] (25-75 percentile) 297 (44 - 1000)

Event ID: 7518.240917060002.wav

Time: 2024-09-17 06:00UTC to 2024-09-17 06:06UTC

Event contains 11822 original clicks, 5911 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5217 clicks) .

Median statistics for 5217 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.42
Median 10dB Center Frequency [kHz] 7.75
Median 3dB Bandwidth [kHz] (lower-upper) 1.74 (6.26 - 8.44)
Median 10dB Bandwidth [kHz] (lower-upper) 5.2 (4.47 - 10.5)
Median duration [μs] (25-75 percentile) 198 (0 - 498)

Event ID: 7518.240917060602.wav

Time: 2024-09-17 06:06UTC to 2024-09-17 06:12UTC

Event contains 10678 original clicks, 5339 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4820 clicks) .

Median statistics for 4820 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.27
Median 10dB Center Frequency [kHz] 7.92
Median 3dB Bandwidth [kHz] (lower-upper) 1.89 (5.95 - 8.51)
Median 10dB Bandwidth [kHz] (lower-upper) 5.73 (4.27 - 10.9)
Median duration [μs] (25-75 percentile) 295 (44 - 1059)

Event ID: 7518.240917061202.wav

Time: 2024-09-17 06:12UTC to 2024-09-17 06:18UTC

Event contains 11634 original clicks, 5817 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5077 clicks) .

Median statistics for 5077 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.61
Median 10dB Center Frequency [kHz] 8.02
Median 3dB Bandwidth [kHz] (lower-upper) 1.68 (6.42 - 8.66)
Median 10dB Bandwidth [kHz] (lower-upper) 5.23 (4.61 - 10.9)
Median duration [μs] (25-75 percentile) 276 (8 - 1000)

Event ID: 7518.240917061802.wav

Time: 2024-09-17 06:18UTC to 2024-09-17 06:24UTC

Event contains 15446 original clicks, 7723 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7021 clicks) .

Median statistics for 7021 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.77
Median 10dB Center Frequency [kHz] 8.27
Median 3dB Bandwidth [kHz] (lower-upper) 1.9 (6.44 - 9.01)
Median 10dB Bandwidth [kHz] (lower-upper) 5.86 (4.54 - 11.4)
Median duration [μs] (25-75 percentile) 433 (100 - 2367)

Event ID: 7518.240917062402.wav

Time: 2024-09-17 06:24UTC to 2024-09-17 06:30UTC

Event contains 18300 original clicks, 9150 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8270 clicks) .

Median statistics for 8270 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.98
Median 10dB Center Frequency [kHz] 8.47
Median 3dB Bandwidth [kHz] (lower-upper) 1.86 (6.65 - 9.2)
Median 10dB Bandwidth [kHz] (lower-upper) 6.12 (4.59 - 11.7)
Median duration [μs] (25-75 percentile) 472 (149 - 2375)

Event ID: 7518.240917063002.wav

Time: 2024-09-17 06:30UTC to 2024-09-17 06:36UTC

Event contains 21688 original clicks, 10844 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9920 clicks) .

Median statistics for 9920 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.42
Median 10dB Center Frequency [kHz] 9.09
Median 3dB Bandwidth [kHz] (lower-upper) 1.96 (7.08 - 9.76)
Median 10dB Bandwidth [kHz] (lower-upper) 6.47 (4.82 - 12.5)
Median duration [μs] (25-75 percentile) 571 (219 - 2445)

Event ID: 7518.240917063602.wav

Time: 2024-09-17 06:36UTC to 2024-09-17 06:42UTC

Event contains 20518 original clicks, 10259 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9475 clicks) .

Median statistics for 9475 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.39
Median 10dB Center Frequency [kHz] 9.07
Median 3dB Bandwidth [kHz] (lower-upper) 1.74 ( 7.1 - 9.7)
Median 10dB Bandwidth [kHz] (lower-upper) 5.69 (4.91 - 12.2)
Median duration [μs] (25-75 percentile) 555 (119 - 2393)

Event ID: 7518.240917064202.wav

Time: 2024-09-17 06:42UTC to 2024-09-17 06:48UTC

Event contains 19286 original clicks, 9643 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8886 clicks) .

Median statistics for 8886 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 8.68
Median 10dB Center Frequency [kHz] 9.07
Median 3dB Bandwidth [kHz] (lower-upper) 1.6 ( 7.5 - 9.8)
Median 10dB Bandwidth [kHz] (lower-upper) 5.52 (5.38 - 12.1)
Median duration [μs] (25-75 percentile) 508 (100 - 2126)

Event ID: 7518.240917064802.wav

Time: 2024-09-17 06:48UTC to 2024-09-17 06:54UTC

Event contains 18332 original clicks, 9166 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8378 clicks) .

Median statistics for 8378 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 8.76
Median 10dB Center Frequency [kHz] 9.24
Median 3dB Bandwidth [kHz] (lower-upper) 1.47 (7.72 - 9.74)
Median 10dB Bandwidth [kHz] (lower-upper) 5.15 (5.64 - 12.2)
Median duration [μs] (25-75 percentile) 456 (23 - 1074)

Event ID: 7518.240917065402.wav

Time: 2024-09-17 06:54UTC to 2024-09-17 07:00UTC

Event contains 18298 original clicks, 9149 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8338 clicks) .

Median statistics for 8338 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 9.2
Median 3dB Center Frequency [kHz] 9.07
Median 10dB Center Frequency [kHz] 9.55
Median 3dB Bandwidth [kHz] (lower-upper) 1.45 (8.09 - 10)
Median 10dB Bandwidth [kHz] (lower-upper) 5.01 (5.85 - 12.4)
Median duration [μs] (25-75 percentile) 399 (0 - 1092)

Event ID: 7518.240917070002.wav

Time: 2024-09-17 07:00UTC to 2024-09-17 07:06UTC

Event contains 17550 original clicks, 8775 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7994 clicks) .

Median statistics for 7994 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10
Median 3dB Center Frequency [kHz] 9.85
Median 10dB Center Frequency [kHz] 10.3
Median 3dB Bandwidth [kHz] (lower-upper) 1.46 (8.91 - 10.8)
Median 10dB Bandwidth [kHz] (lower-upper) 5.29 (6.39 - 13.3)
Median duration [μs] (25-75 percentile) 420 (0 - 1188)

Event ID: 7518.240917070602.wav

Time: 2024-09-17 07:06UTC to 2024-09-17 07:12UTC

Event contains 14518 original clicks, 7259 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6644 clicks) .

Median statistics for 6644 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10.8
Median 3dB Center Frequency [kHz] 10.3
Median 10dB Center Frequency [kHz] 10.5
Median 3dB Bandwidth [kHz] (lower-upper) 1.56 (9.18 - 11.3)
Median 10dB Bandwidth [kHz] (lower-upper) 5.53 (5.85 - 13.9)
Median duration [μs] (25-75 percentile) 394 (0 - 1671)

Event ID: 7518.240917071202.wav

Time: 2024-09-17 07:12UTC to 2024-09-17 07:18UTC

Event contains 16702 original clicks, 8351 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7689 clicks) .

Median statistics for 7689 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.44
Median 10dB Center Frequency [kHz] 8.12
Median 3dB Bandwidth [kHz] (lower-upper) 1.52 ( 6.4 - 8.5)
Median 10dB Bandwidth [kHz] (lower-upper) 4.9 (4.23 - 11.3)
Median duration [μs] (25-75 percentile) 516 (0 - 1994)

Event ID: 7518.240917071802.wav

Time: 2024-09-17 07:18UTC to 2024-09-17 07:24UTC

Event contains 18692 original clicks, 9346 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8598 clicks) .

Median statistics for 8598 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.37
Median 10dB Center Frequency [kHz] 7.99
Median 3dB Bandwidth [kHz] (lower-upper) 1.62 (6.19 - 8.48)
Median 10dB Bandwidth [kHz] (lower-upper) 5.04 (4.12 - 11.2)
Median duration [μs] (25-75 percentile) 474 (31 - 1335)

Event ID: 7518.240917072402.wav

Time: 2024-09-17 07:24UTC to 2024-09-17 07:30UTC

Event contains 20906 original clicks, 10453 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9524 clicks) .

Median statistics for 9524 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.76
Median 10dB Center Frequency [kHz] 7.29
Median 3dB Bandwidth [kHz] (lower-upper) 1.61 (5.62 - 7.93)
Median 10dB Bandwidth [kHz] (lower-upper) 4.91 (3.82 - 10.2)
Median duration [μs] (25-75 percentile) 674 (146 - 1588)

Event ID: 7518.240917073002.wav

Time: 2024-09-17 07:30UTC to 2024-09-17 07:36UTC

Event contains 22256 original clicks, 11128 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 10152 clicks) .

Median statistics for 10152 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.22
Median 10dB Center Frequency [kHz] 6.85
Median 3dB Bandwidth [kHz] (lower-upper) 1.59 (5.11 - 7.32)
Median 10dB Bandwidth [kHz] (lower-upper) 4.9 (3.62 - 9.65)
Median duration [μs] (25-75 percentile) 590 (112 - 1298)

Event ID: 7518.240917073602.wav

Time: 2024-09-17 07:36UTC to 2024-09-17 07:42UTC

Event contains 24162 original clicks, 12081 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 11011 clicks) .

Median statistics for 11011 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.29
Median 10dB Center Frequency [kHz] 6.95
Median 3dB Bandwidth [kHz] (lower-upper) 1.68 (5.16 - 7.38)
Median 10dB Bandwidth [kHz] (lower-upper) 5.02 (3.58 - 9.83)
Median duration [μs] (25-75 percentile) 680 (222 - 1439)

Event ID: 7518.240917074202.wav

Time: 2024-09-17 07:42UTC to 2024-09-17 07:48UTC

Event contains 23026 original clicks, 11513 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 10251 clicks) .

Median statistics for 10251 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.89
Median 10dB Center Frequency [kHz] 6.64
Median 3dB Bandwidth [kHz] (lower-upper) 1.65 (4.82 - 6.94)
Median 10dB Bandwidth [kHz] (lower-upper) 4.87 (3.38 - 9.43)
Median duration [μs] (25-75 percentile) 560 (211 - 1191)

Event ID: 7518.240917074802.wav

Time: 2024-09-17 07:48UTC to 2024-09-17 07:54UTC

Event contains 19198 original clicks, 9599 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8580 clicks) .

Median statistics for 8580 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.76
Median 10dB Center Frequency [kHz] 6.4
Median 3dB Bandwidth [kHz] (lower-upper) 1.63 (4.73 - 6.85)
Median 10dB Bandwidth [kHz] (lower-upper) 4.88 (3.45 - 9.05)
Median duration [μs] (25-75 percentile) 451 (151 - 1000)

Event ID: 7518.240917085402.wav

Time: 2024-09-17 08:54UTC to 2024-09-17 09:00UTC

Event contains 4952 original clicks, 2476 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1518 clicks) .

Median statistics for 1518 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 5.97
Median 10dB Center Frequency [kHz] 6.3
Median 3dB Bandwidth [kHz] (lower-upper) 1.25 (5.21 - 6.76)
Median 10dB Bandwidth [kHz] (lower-upper) 3.9 (3.91 - 8.55)
Median duration [μs] (25-75 percentile) 50 (0 - 295)

Event ID: 7518.240917204202.wav

Time: 2024-09-17 20:42UTC to 2024-09-17 20:48UTC

Event contains 6550 original clicks, 3275 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1939 clicks) .

Median statistics for 1939 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 7.88
Median 10dB Center Frequency [kHz] 8.13
Median 3dB Bandwidth [kHz] (lower-upper) 1.66 ( 6.9 - 8.93)
Median 10dB Bandwidth [kHz] (lower-upper) 5.11 (5.27 - 11.1)
Median duration [μs] (25-75 percentile) 39 (0 - 115)

Event ID: 7518.240917204802.wav

Time: 2024-09-17 20:48UTC to 2024-09-17 20:54UTC

Event contains 17578 original clicks, 8789 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5723 clicks) .

Median statistics for 5723 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 9.2
Median 3dB Center Frequency [kHz] 8.87
Median 10dB Center Frequency [kHz] 9.04
Median 3dB Bandwidth [kHz] (lower-upper) 1.24 (8.18 - 9.61)
Median 10dB Bandwidth [kHz] (lower-upper) 3.84 ( 6.6 - 11.2)
Median duration [μs] (25-75 percentile) 222 (100 - 493)

Event ID: 7518.240917205402.wav

Time: 2024-09-17 20:54UTC to 2024-09-17 21:00UTC

Event contains 2162 original clicks, 1081 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 596 clicks) .

Median statistics for 596 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.78
Median 10dB Center Frequency [kHz] 6.4
Median 3dB Bandwidth [kHz] (lower-upper) 1.45 (5.05 - 6.58)
Median 10dB Bandwidth [kHz] (lower-upper) 4.85 (3.84 - 8.99)
Median duration [μs] (25-75 percentile) 18 (0 - 105)

Event ID: 7518.240918121802.wav

Time: 2024-09-18 12:18UTC to 2024-09-18 12:24UTC

Event contains 418 original clicks, 209 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 151 clicks) .

Median statistics for 151 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.42
Median 10dB Center Frequency [kHz] 6.97
Median 3dB Bandwidth [kHz] (lower-upper) 1.26 (5.86 - 6.91)
Median 10dB Bandwidth [kHz] (lower-upper) 3.16 (4.97 - 8.81)
Median duration [μs] (25-75 percentile) 99 (0 - 1000)

Event ID: 7518.240918135402.wav

Time: 2024-09-18 13:54UTC to 2024-09-18 14:00UTC

Event contains 402 original clicks, 201 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 143 clicks) .

Median statistics for 143 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.35
Median 10dB Center Frequency [kHz] 6.71
Median 3dB Bandwidth [kHz] (lower-upper) 1.3 (5.74 - 6.95)
Median 10dB Bandwidth [kHz] (lower-upper) 3.36 ( 4.8 - 8.38)
Median duration [μs] (25-75 percentile) 336 (29 - 1174)

Event ID: 7518.240919015403.wav

Time: 2024-09-19 01:54UTC to 2024-09-19 02:00UTC

Event contains 428 original clicks, 214 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 134 clicks) .

Median statistics for 134 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.51
Median 10dB Center Frequency [kHz] 7.37
Median 3dB Bandwidth [kHz] (lower-upper) 1.28 (6.71 - 8.2)
Median 10dB Bandwidth [kHz] (lower-upper) 4.05 (5.33 - 9.53)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240919020003.wav

Time: 2024-09-19 02:00UTC to 2024-09-19 02:06UTC

Event contains 676 original clicks, 338 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 205 clicks) .

Median statistics for 205 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.36
Median 10dB Center Frequency [kHz] 7.32
Median 3dB Bandwidth [kHz] (lower-upper) 1.14 (6.78 - 8.05)
Median 10dB Bandwidth [kHz] (lower-upper) 3.55 (5.29 - 9.46)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240919020603.wav

Time: 2024-09-19 02:06UTC to 2024-09-19 02:12UTC

Event contains 800 original clicks, 400 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 250 clicks) .

Median statistics for 250 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.46
Median 10dB Center Frequency [kHz] 7.36
Median 3dB Bandwidth [kHz] (lower-upper) 1.1 (6.84 - 8.15)
Median 10dB Bandwidth [kHz] (lower-upper) 3.62 (5.11 - 9.52)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240919021203.wav

Time: 2024-09-19 02:12UTC to 2024-09-19 02:18UTC

Event contains 1072 original clicks, 536 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 345 clicks) .

Median statistics for 345 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.11
Median 10dB Center Frequency [kHz] 7.27
Median 3dB Bandwidth [kHz] (lower-upper) 0.994 (6.66 - 7.63)
Median 10dB Bandwidth [kHz] (lower-upper) 3.33 (5.64 - 8.93)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240919021803.wav

Time: 2024-09-19 02:18UTC to 2024-09-19 02:24UTC

Event contains 1154 original clicks, 577 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 330 clicks) .

Median statistics for 330 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.53
Median 10dB Center Frequency [kHz] 7.35
Median 3dB Bandwidth [kHz] (lower-upper) 1.05 (6.93 - 8.14)
Median 10dB Bandwidth [kHz] (lower-upper) 3.55 (5.34 - 9.23)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240919022403.wav

Time: 2024-09-19 02:24UTC to 2024-09-19 02:30UTC

Event contains 726 original clicks, 363 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 222 clicks) .

Median statistics for 222 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.35
Median 10dB Center Frequency [kHz] 7.44
Median 3dB Bandwidth [kHz] (lower-upper) 1.02 (6.77 - 8.06)
Median 10dB Bandwidth [kHz] (lower-upper) 3.56 (5.69 - 9.36)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240919023003.wav

Time: 2024-09-19 02:30UTC to 2024-09-19 02:36UTC

Event contains 768 original clicks, 384 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 255 clicks) .

Median statistics for 255 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 7.02
Median 10dB Center Frequency [kHz] 7.14
Median 3dB Bandwidth [kHz] (lower-upper) 0.933 (6.48 - 7.58)
Median 10dB Bandwidth [kHz] (lower-upper) 3.25 (5.24 - 9.13)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240919023603.wav

Time: 2024-09-19 02:36UTC to 2024-09-19 02:42UTC

Event contains 2090 original clicks, 1045 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 730 clicks) .

Median statistics for 730 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.34
Median 10dB Center Frequency [kHz] 7.26
Median 3dB Bandwidth [kHz] (lower-upper) 1.07 (6.67 - 8.03)
Median 10dB Bandwidth [kHz] (lower-upper) 3.44 (5.38 - 9.33)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240919024203.wav

Time: 2024-09-19 02:42UTC to 2024-09-19 02:48UTC

Event contains 2204 original clicks, 1102 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 745 clicks) .

Median statistics for 745 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.51
Median 10dB Center Frequency [kHz] 7.48
Median 3dB Bandwidth [kHz] (lower-upper) 1.11 (6.81 - 8.18)
Median 10dB Bandwidth [kHz] (lower-upper) 3.77 (5.36 - 9.47)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240919024803.wav

Time: 2024-09-19 02:48UTC to 2024-09-19 02:54UTC

Event contains 2728 original clicks, 1364 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 951 clicks) .

Median statistics for 951 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.34
Median 10dB Center Frequency [kHz] 7.47
Median 3dB Bandwidth [kHz] (lower-upper) 1.13 (6.75 - 8.02)
Median 10dB Bandwidth [kHz] (lower-upper) 3.59 (5.41 - 9.47)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240919025403.wav

Time: 2024-09-19 02:54UTC to 2024-09-19 03:00UTC

Event contains 3560 original clicks, 1780 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1254 clicks) .

Median statistics for 1254 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.42
Median 10dB Center Frequency [kHz] 7.5
Median 3dB Bandwidth [kHz] (lower-upper) 1.11 (6.79 - 8.01)
Median 10dB Bandwidth [kHz] (lower-upper) 3.46 (5.66 - 9.52)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240919030003.wav

Time: 2024-09-19 03:00UTC to 2024-09-19 03:06UTC

Event contains 2328 original clicks, 1164 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 784 clicks) .

Median statistics for 784 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.48
Median 10dB Center Frequency [kHz] 7.39
Median 3dB Bandwidth [kHz] (lower-upper) 1.04 (6.91 - 8.05)
Median 10dB Bandwidth [kHz] (lower-upper) 3.39 (5.32 - 9.31)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240919030603.wav

Time: 2024-09-19 03:06UTC to 2024-09-19 03:12UTC

Event contains 3352 original clicks, 1676 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1220 clicks) .

Median statistics for 1220 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.18
Median 10dB Center Frequency [kHz] 7.24
Median 3dB Bandwidth [kHz] (lower-upper) 1.11 (6.51 - 7.86)
Median 10dB Bandwidth [kHz] (lower-upper) 3.44 (5.17 - 9.16)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240919031203.wav

Time: 2024-09-19 03:12UTC to 2024-09-19 03:18UTC

Event contains 2978 original clicks, 1489 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1077 clicks) .

Median statistics for 1077 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.58
Median 10dB Center Frequency [kHz] 7.61
Median 3dB Bandwidth [kHz] (lower-upper) 1.14 (6.89 - 8.25)
Median 10dB Bandwidth [kHz] (lower-upper) 3.79 (5.49 - 9.63)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240919031803.wav

Time: 2024-09-19 03:18UTC to 2024-09-19 03:24UTC

Event contains 4034 original clicks, 2017 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1558 clicks) .

Median statistics for 1558 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.28
Median 10dB Center Frequency [kHz] 7.43
Median 3dB Bandwidth [kHz] (lower-upper) 1.11 (6.63 - 7.89)
Median 10dB Bandwidth [kHz] (lower-upper) 3.77 (5.33 - 9.43)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240919032403.wav

Time: 2024-09-19 03:24UTC to 2024-09-19 03:30UTC

Event contains 4720 original clicks, 2360 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1759 clicks) .

Median statistics for 1759 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.23
Median 10dB Center Frequency [kHz] 7.24
Median 3dB Bandwidth [kHz] (lower-upper) 1.25 (6.46 - 7.99)
Median 10dB Bandwidth [kHz] (lower-upper) 3.68 ( 5.2 - 9.21)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240919033003.wav

Time: 2024-09-19 03:30UTC to 2024-09-19 03:36UTC

Event contains 5120 original clicks, 2560 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1891 clicks) .

Median statistics for 1891 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.61
Median 10dB Center Frequency [kHz] 7.73
Median 3dB Bandwidth [kHz] (lower-upper) 1.23 (6.86 - 8.32)
Median 10dB Bandwidth [kHz] (lower-upper) 4.12 (5.33 - 9.94)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240919033603.wav

Time: 2024-09-19 03:36UTC to 2024-09-19 03:42UTC

Event contains 5412 original clicks, 2706 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2127 clicks) .

Median statistics for 2127 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.52
Median 10dB Center Frequency [kHz] 7.64
Median 3dB Bandwidth [kHz] (lower-upper) 1.25 ( 6.7 - 8.29)
Median 10dB Bandwidth [kHz] (lower-upper) 4.11 (5.22 - 9.74)
Median duration [μs] (25-75 percentile) 0 (0 - 46)

Event ID: 7518.240919034203.wav

Time: 2024-09-19 03:42UTC to 2024-09-19 03:48UTC

Event contains 4530 original clicks, 2265 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1724 clicks) .

Median statistics for 1724 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.43
Median 10dB Center Frequency [kHz] 7.49
Median 3dB Bandwidth [kHz] (lower-upper) 1.2 (6.72 - 8.09)
Median 10dB Bandwidth [kHz] (lower-upper) 3.76 (5.23 - 9.58)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240919034803.wav

Time: 2024-09-19 03:48UTC to 2024-09-19 03:54UTC

Event contains 4500 original clicks, 2250 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1721 clicks) .

Median statistics for 1721 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.68
Median 10dB Center Frequency [kHz] 7.76
Median 3dB Bandwidth [kHz] (lower-upper) 1.29 (6.96 - 8.42)
Median 10dB Bandwidth [kHz] (lower-upper) 4.12 ( 5.5 - 10)
Median duration [μs] (25-75 percentile) 0 (0 - 47)

Event ID: 7518.240919035403.wav

Time: 2024-09-19 03:54UTC to 2024-09-19 04:00UTC

Event contains 3580 original clicks, 1790 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1391 clicks) .

Median statistics for 1391 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.35
Median 10dB Center Frequency [kHz] 7.41
Median 3dB Bandwidth [kHz] (lower-upper) 1.21 (6.66 - 7.93)
Median 10dB Bandwidth [kHz] (lower-upper) 3.79 (4.94 - 9.57)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7518.240919040003.wav

Time: 2024-09-19 04:00UTC to 2024-09-19 04:06UTC

Event contains 1416 original clicks, 708 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 562 clicks) .

Median statistics for 562 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.68
Median 10dB Center Frequency [kHz] 7.93
Median 3dB Bandwidth [kHz] (lower-upper) 1.3 ( 6.9 - 8.51)
Median 10dB Bandwidth [kHz] (lower-upper) 4.15 (5.25 - 10.2)
Median duration [μs] (25-75 percentile) 0 (0 - 130)

Event ID: 7518.240919040603.wav

Time: 2024-09-19 04:06UTC to 2024-09-19 04:12UTC

Event contains 4230 original clicks, 2115 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1646 clicks) .

Median statistics for 1646 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.26
Median 10dB Center Frequency [kHz] 7.43
Median 3dB Bandwidth [kHz] (lower-upper) 1.19 (6.48 - 7.95)
Median 10dB Bandwidth [kHz] (lower-upper) 3.75 (4.95 - 9.58)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7518.240919041203.wav

Time: 2024-09-19 04:12UTC to 2024-09-19 04:18UTC

Event contains 5898 original clicks, 2949 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2271 clicks) .

Median statistics for 2271 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.08
Median 10dB Center Frequency [kHz] 7.36
Median 3dB Bandwidth [kHz] (lower-upper) 1.24 (6.35 - 7.9)
Median 10dB Bandwidth [kHz] (lower-upper) 3.8 (5.09 - 9.48)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7518.240919041803.wav

Time: 2024-09-19 04:18UTC to 2024-09-19 04:24UTC

Event contains 7050 original clicks, 3525 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2886 clicks) .

Median statistics for 2886 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.43
Median 10dB Center Frequency [kHz] 7.64
Median 3dB Bandwidth [kHz] (lower-upper) 1.38 (6.55 - 8.26)
Median 10dB Bandwidth [kHz] (lower-upper) 4.47 (4.68 - 9.96)
Median duration [μs] (25-75 percentile) 0 (0 - 308)

Event ID: 7518.240919042403.wav

Time: 2024-09-19 04:24UTC to 2024-09-19 04:30UTC

Event contains 6178 original clicks, 3089 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2486 clicks) .

Median statistics for 2486 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.05
Median 10dB Center Frequency [kHz] 7.27
Median 3dB Bandwidth [kHz] (lower-upper) 1.31 ( 6.1 - 7.9)
Median 10dB Bandwidth [kHz] (lower-upper) 4.43 ( 4.4 - 9.69)
Median duration [μs] (25-75 percentile) 0 (0 - 234)

Event ID: 7518.240919043003.wav

Time: 2024-09-19 04:30UTC to 2024-09-19 04:36UTC

Event contains 7812 original clicks, 3906 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3115 clicks) .

Median statistics for 3115 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.63
Median 10dB Center Frequency [kHz] 6.97
Median 3dB Bandwidth [kHz] (lower-upper) 1.32 (5.84 - 7.45)
Median 10dB Bandwidth [kHz] (lower-upper) 4.32 (4.42 - 9.39)
Median duration [μs] (25-75 percentile) 0 (0 - 227)

Event ID: 7518.240919043603.wav

Time: 2024-09-19 04:36UTC to 2024-09-19 04:42UTC

Event contains 7718 original clicks, 3859 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3107 clicks) .

Median statistics for 3107 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.6
Median 10dB Center Frequency [kHz] 6.91
Median 3dB Bandwidth [kHz] (lower-upper) 1.31 (5.66 - 7.41)
Median 10dB Bandwidth [kHz] (lower-upper) 4.38 (4.05 - 9.35)
Median duration [μs] (25-75 percentile) 0 (0 - 253)

Event ID: 7518.240919044203.wav

Time: 2024-09-19 04:42UTC to 2024-09-19 04:48UTC

Event contains 7386 original clicks, 3693 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2843 clicks) .

Median statistics for 2843 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.27
Median 10dB Center Frequency [kHz] 6.53
Median 3dB Bandwidth [kHz] (lower-upper) 1.32 ( 5.4 - 7.19)
Median 10dB Bandwidth [kHz] (lower-upper) 4.26 (4.11 - 8.91)
Median duration [μs] (25-75 percentile) 0 (0 - 125)

Event ID: 7518.240919044803.wav

Time: 2024-09-19 04:48UTC to 2024-09-19 04:54UTC

Event contains 7556 original clicks, 3778 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2966 clicks) .

Median statistics for 2966 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.59
Median 10dB Center Frequency [kHz] 6.12
Median 3dB Bandwidth [kHz] (lower-upper) 1.3 (4.87 - 6.36)
Median 10dB Bandwidth [kHz] (lower-upper) 4.07 (3.69 - 8.41)
Median duration [μs] (25-75 percentile) 0 (0 - 148)

Event ID: 7518.240919045403.wav

Time: 2024-09-19 04:54UTC to 2024-09-19 05:00UTC

Event contains 8398 original clicks, 4199 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3335 clicks) .

Median statistics for 3335 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.39
Median 10dB Center Frequency [kHz] 6.93
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (5.52 - 7.18)
Median 10dB Bandwidth [kHz] (lower-upper) 4.35 (4.12 - 9.39)
Median duration [μs] (25-75 percentile) 5.2 (0 - 177)

Event ID: 7518.240919050003.wav

Time: 2024-09-19 05:00UTC to 2024-09-19 05:06UTC

Event contains 7794 original clicks, 3897 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3050 clicks) .

Median statistics for 3050 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.08
Median 10dB Center Frequency [kHz] 6.58
Median 3dB Bandwidth [kHz] (lower-upper) 1.43 (5.13 - 6.96)
Median 10dB Bandwidth [kHz] (lower-upper) 4.43 (3.89 - 9.09)
Median duration [μs] (25-75 percentile) 23 (0 - 245)

Event ID: 7518.240919050603.wav

Time: 2024-09-19 05:06UTC to 2024-09-19 05:12UTC

Event contains 9052 original clicks, 4526 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3697 clicks) .

Median statistics for 3697 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.76
Median 10dB Center Frequency [kHz] 7.16
Median 3dB Bandwidth [kHz] (lower-upper) 1.4 (5.86 - 7.67)
Median 10dB Bandwidth [kHz] (lower-upper) 4.24 ( 4.3 - 9.46)
Median duration [μs] (25-75 percentile) 42 (0 - 355)

Event ID: 7518.240919051203.wav

Time: 2024-09-19 05:12UTC to 2024-09-19 05:18UTC

Event contains 8258 original clicks, 4129 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3336 clicks) .

Median statistics for 3336 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.59
Median 10dB Center Frequency [kHz] 7.05
Median 3dB Bandwidth [kHz] (lower-upper) 1.46 (5.56 - 7.51)
Median 10dB Bandwidth [kHz] (lower-upper) 4.56 (3.93 - 9.64)
Median duration [μs] (25-75 percentile) 34 (0 - 311)

Event ID: 7518.240919051803.wav

Time: 2024-09-19 05:18UTC to 2024-09-19 05:24UTC

Event contains 7580 original clicks, 3790 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3059 clicks) .

Median statistics for 3059 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.46
Median 10dB Center Frequency [kHz] 6.99
Median 3dB Bandwidth [kHz] (lower-upper) 1.47 (5.43 - 7.47)
Median 10dB Bandwidth [kHz] (lower-upper) 4.83 (3.85 - 9.68)
Median duration [μs] (25-75 percentile) 55 (0 - 1000)

Event ID: 7518.240919052403.wav

Time: 2024-09-19 05:24UTC to 2024-09-19 05:30UTC

Event contains 8280 original clicks, 4140 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3229 clicks) .

Median statistics for 3229 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.69
Median 10dB Center Frequency [kHz] 7.04
Median 3dB Bandwidth [kHz] (lower-upper) 1.38 (5.75 - 7.62)
Median 10dB Bandwidth [kHz] (lower-upper) 4.62 (4.09 - 9.61)
Median duration [μs] (25-75 percentile) 18 (0 - 313)

Event ID: 7518.240919053003.wav

Time: 2024-09-19 05:30UTC to 2024-09-19 05:36UTC

Event contains 10488 original clicks, 5244 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4289 clicks) .

Median statistics for 4289 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.11
Median 10dB Center Frequency [kHz] 6.83
Median 3dB Bandwidth [kHz] (lower-upper) 1.5 (5.06 - 7.06)
Median 10dB Bandwidth [kHz] (lower-upper) 4.84 ( 3.7 - 9.49)
Median duration [μs] (25-75 percentile) 112 (0 - 1000)

Event ID: 7518.240919053603.wav

Time: 2024-09-19 05:36UTC to 2024-09-19 05:42UTC

Event contains 9674 original clicks, 4837 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4016 clicks) .

Median statistics for 4016 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.18
Median 10dB Center Frequency [kHz] 6.75
Median 3dB Bandwidth [kHz] (lower-upper) 1.48 (5.23 - 7.05)
Median 10dB Bandwidth [kHz] (lower-upper) 4.72 (3.83 - 9.33)
Median duration [μs] (25-75 percentile) 78 (0 - 360)

Event ID: 7518.240919054203.wav

Time: 2024-09-19 05:42UTC to 2024-09-19 05:48UTC

Event contains 8960 original clicks, 4480 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3397 clicks) .

Median statistics for 3397 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.12
Median 10dB Center Frequency [kHz] 6.81
Median 3dB Bandwidth [kHz] (lower-upper) 1.45 (5.15 - 7.05)
Median 10dB Bandwidth [kHz] (lower-upper) 4.7 (3.84 - 9.24)
Median duration [μs] (25-75 percentile) 36 (0 - 240)

Event ID: 7518.240919054803.wav

Time: 2024-09-19 05:48UTC to 2024-09-19 05:54UTC

Event contains 9554 original clicks, 4777 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3732 clicks) .

Median statistics for 3732 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7
Median 10dB Center Frequency [kHz] 7.17
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (6.15 - 7.82)
Median 10dB Bandwidth [kHz] (lower-upper) 4.43 (4.19 - 9.77)
Median duration [μs] (25-75 percentile) 10 (0 - 180)

Event ID: 7518.240919055403.wav

Time: 2024-09-19 05:54UTC to 2024-09-19 06:00UTC

Event contains 8684 original clicks, 4342 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3630 clicks) .

Median statistics for 3630 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.47
Median 10dB Center Frequency [kHz] 7.86
Median 3dB Bandwidth [kHz] (lower-upper) 1.42 (6.57 - 8.42)
Median 10dB Bandwidth [kHz] (lower-upper) 4.9 (4.45 - 10.7)
Median duration [μs] (25-75 percentile) 60 (0 - 441)

Event ID: 7518.240919060003.wav

Time: 2024-09-19 06:00UTC to 2024-09-19 06:06UTC

Event contains 8690 original clicks, 4345 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3689 clicks) .

Median statistics for 3689 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.44
Median 10dB Center Frequency [kHz] 8.02
Median 3dB Bandwidth [kHz] (lower-upper) 1.3 (6.52 - 8.3)
Median 10dB Bandwidth [kHz] (lower-upper) 4.27 (4.78 - 10.4)
Median duration [μs] (25-75 percentile) 47 (0 - 1000)

Event ID: 7518.240919060603.wav

Time: 2024-09-19 06:06UTC to 2024-09-19 06:12UTC

Event contains 11214 original clicks, 5607 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4799 clicks) .

Median statistics for 4799 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.12
Median 10dB Center Frequency [kHz] 7.51
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (6.17 - 7.98)
Median 10dB Bandwidth [kHz] (lower-upper) 4.46 (4.45 - 9.99)
Median duration [μs] (25-75 percentile) 55 (0 - 495)

Event ID: 7518.240919061203.wav

Time: 2024-09-19 06:12UTC to 2024-09-19 06:18UTC

Event contains 12572 original clicks, 6286 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5407 clicks) .

Median statistics for 5407 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.01
Median 10dB Center Frequency [kHz] 7.62
Median 3dB Bandwidth [kHz] (lower-upper) 1.42 (6.05 - 7.99)
Median 10dB Bandwidth [kHz] (lower-upper) 4.85 (4.12 - 10.5)
Median duration [μs] (25-75 percentile) 83 (0 - 1000)

Event ID: 7518.240919061803.wav

Time: 2024-09-19 06:18UTC to 2024-09-19 06:24UTC

Event contains 9674 original clicks, 4837 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4228 clicks) .

Median statistics for 4228 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.39
Median 10dB Center Frequency [kHz] 7.85
Median 3dB Bandwidth [kHz] (lower-upper) 1.41 (6.48 - 8.28)
Median 10dB Bandwidth [kHz] (lower-upper) 4.67 (4.43 - 10.4)
Median duration [μs] (25-75 percentile) 68 (0 - 1000)

Event ID: 7518.240919062403.wav

Time: 2024-09-19 06:24UTC to 2024-09-19 06:30UTC

Event contains 11498 original clicks, 5749 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5011 clicks) .

Median statistics for 5011 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.39
Median 10dB Center Frequency [kHz] 8.03
Median 3dB Bandwidth [kHz] (lower-upper) 1.49 (6.29 - 8.38)
Median 10dB Bandwidth [kHz] (lower-upper) 4.89 (4.48 - 10.9)
Median duration [μs] (25-75 percentile) 115 (0 - 1000)

Event ID: 7518.240919063003.wav

Time: 2024-09-19 06:30UTC to 2024-09-19 06:36UTC

Event contains 10366 original clicks, 5183 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4469 clicks) .

Median statistics for 4469 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.81
Median 10dB Center Frequency [kHz] 7.29
Median 3dB Bandwidth [kHz] (lower-upper) 1.39 (5.84 - 7.76)
Median 10dB Bandwidth [kHz] (lower-upper) 4.53 (4.12 - 9.9)
Median duration [μs] (25-75 percentile) 89 (0 - 1000)

Event ID: 7518.240919063603.wav

Time: 2024-09-19 06:36UTC to 2024-09-19 06:42UTC

Event contains 9910 original clicks, 4955 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4058 clicks) .

Median statistics for 4058 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.46
Median 10dB Center Frequency [kHz] 7.21
Median 3dB Bandwidth [kHz] (lower-upper) 1.41 (5.52 - 7.44)
Median 10dB Bandwidth [kHz] (lower-upper) 4.88 (3.92 - 10.1)
Median duration [μs] (25-75 percentile) 73 (0 - 454)

Event ID: 7518.240919064203.wav

Time: 2024-09-19 06:42UTC to 2024-09-19 06:48UTC

Event contains 8908 original clicks, 4454 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3696 clicks) .

Median statistics for 3696 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.36
Median 10dB Center Frequency [kHz] 6.97
Median 3dB Bandwidth [kHz] (lower-upper) 1.5 (5.48 - 7.26)
Median 10dB Bandwidth [kHz] (lower-upper) 4.63 (3.97 - 9.58)
Median duration [μs] (25-75 percentile) 89 (0 - 1000)

Event ID: 7518.240919064803.wav

Time: 2024-09-19 06:48UTC to 2024-09-19 06:54UTC

Event contains 9298 original clicks, 4649 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4067 clicks) .

Median statistics for 4067 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.05
Median 10dB Center Frequency [kHz] 7.37
Median 3dB Bandwidth [kHz] (lower-upper) 1.42 (6.07 - 7.97)
Median 10dB Bandwidth [kHz] (lower-upper) 4.61 (4.25 - 9.98)
Median duration [μs] (25-75 percentile) 112 (0 - 1000)

Event ID: 7518.240919065403.wav

Time: 2024-09-19 06:54UTC to 2024-09-19 07:00UTC

Event contains 8286 original clicks, 4143 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3501 clicks) .

Median statistics for 3501 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.53
Median 10dB Center Frequency [kHz] 7.13
Median 3dB Bandwidth [kHz] (lower-upper) 1.45 (5.68 - 7.39)
Median 10dB Bandwidth [kHz] (lower-upper) 4.72 (4.11 - 9.84)
Median duration [μs] (25-75 percentile) 60 (0 - 422)

Event ID: 7518.240919070603.wav

Time: 2024-09-19 07:06UTC to 2024-09-19 07:12UTC

Event contains 7594 original clicks, 3797 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3164 clicks) .

Median statistics for 3164 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.93
Median 10dB Center Frequency [kHz] 6.39
Median 3dB Bandwidth [kHz] (lower-upper) 1.46 (4.97 - 6.85)
Median 10dB Bandwidth [kHz] (lower-upper) 4.31 (3.66 - 8.9)
Median duration [μs] (25-75 percentile) 70 (0 - 396)

Event ID: 7518.240919080603.wav

Time: 2024-09-19 08:06UTC to 2024-09-19 08:12UTC

Event contains 1226 original clicks, 613 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 373 clicks) .

Median statistics for 373 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.13
Median 10dB Center Frequency [kHz] 6.41
Median 3dB Bandwidth [kHz] (lower-upper) 1.11 ( 5.5 - 6.69)
Median 10dB Bandwidth [kHz] (lower-upper) 3.78 (4.27 - 8.39)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240919081203.wav

Time: 2024-09-19 08:12UTC to 2024-09-19 08:18UTC

Event contains 1386 original clicks, 693 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 406 clicks) .

Median statistics for 406 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.59
Median 10dB Center Frequency [kHz] 6.78
Median 3dB Bandwidth [kHz] (lower-upper) 1.21 ( 5.9 - 7.33)
Median 10dB Bandwidth [kHz] (lower-upper) 3.94 (4.33 - 8.86)
Median duration [μs] (25-75 percentile) 0 (0 - 7)

Event ID: 7518.240919082403.wav

Time: 2024-09-19 08:24UTC to 2024-09-19 08:30UTC

Event contains 1070 original clicks, 535 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 308 clicks) .

Median statistics for 308 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.59
Median 10dB Center Frequency [kHz] 7.05
Median 3dB Bandwidth [kHz] (lower-upper) 1.28 ( 5.9 - 7.37)
Median 10dB Bandwidth [kHz] (lower-upper) 3.81 (4.64 - 9.35)
Median duration [μs] (25-75 percentile) 0 (0 - 5)

Event ID: 7518.240919084203.wav

Time: 2024-09-19 08:42UTC to 2024-09-19 08:48UTC

Event contains 506 original clicks, 253 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 178 clicks) .

Median statistics for 178 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.25
Median 10dB Center Frequency [kHz] 7.54
Median 3dB Bandwidth [kHz] (lower-upper) 1.02 (6.69 - 7.68)
Median 10dB Bandwidth [kHz] (lower-upper) 3.26 (5.88 - 9.39)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240919084803.wav

Time: 2024-09-19 08:48UTC to 2024-09-19 08:54UTC

Event contains 858 original clicks, 429 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 220 clicks) .

Median statistics for 220 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.77
Median 10dB Center Frequency [kHz] 6.14
Median 3dB Bandwidth [kHz] (lower-upper) 1.04 ( 5.2 - 6.45)
Median 10dB Bandwidth [kHz] (lower-upper) 3.68 (3.81 - 7.91)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240919090003.wav

Time: 2024-09-19 09:00UTC to 2024-09-19 09:06UTC

Event contains 922 original clicks, 461 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 268 clicks) .

Median statistics for 268 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.96
Median 10dB Center Frequency [kHz] 6.97
Median 3dB Bandwidth [kHz] (lower-upper) 1.12 (6.26 - 7.68)
Median 10dB Bandwidth [kHz] (lower-upper) 3.81 (4.66 - 9.22)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240919113003.wav

Time: 2024-09-19 11:30UTC to 2024-09-19 11:36UTC

Event contains 476 original clicks, 238 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 168 clicks) .

Median statistics for 168 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.83
Median 10dB Center Frequency [kHz] 7.84
Median 3dB Bandwidth [kHz] (lower-upper) 0.996 (7.17 - 8.33)
Median 10dB Bandwidth [kHz] (lower-upper) 3.56 (5.66 - 9.63)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240919170603.wav

Time: 2024-09-19 17:06UTC to 2024-09-19 17:12UTC

Event contains 660 original clicks, 330 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 243 clicks) .

Median statistics for 243 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.66
Median 10dB Center Frequency [kHz] 7.87
Median 3dB Bandwidth [kHz] (lower-upper) 1.17 (6.89 - 8.32)
Median 10dB Bandwidth [kHz] (lower-upper) 4.09 (4.67 - 9.83)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240919200603.wav

Time: 2024-09-19 20:06UTC to 2024-09-19 20:12UTC

Event contains 2938 original clicks, 1469 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 496 clicks) .

Median statistics for 496 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.2
Median 3dB Center Frequency [kHz] 5.9
Median 10dB Center Frequency [kHz] 6.15
Median 3dB Bandwidth [kHz] (lower-upper) 1.07 (5.15 - 6.52)
Median 10dB Bandwidth [kHz] (lower-upper) 3.87 (3.94 - 8.21)
Median duration [μs] (25-75 percentile) 112 (21 - 396)

Event ID: 7518.240919201203.wav

Time: 2024-09-19 20:12UTC to 2024-09-19 20:18UTC

Event contains 724 original clicks, 362 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 148 clicks) .

Median statistics for 148 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.7
Median 10dB Center Frequency [kHz] 5.98
Median 3dB Bandwidth [kHz] (lower-upper) 1.09 (5.07 - 6.32)
Median 10dB Bandwidth [kHz] (lower-upper) 3.83 (3.88 - 8.07)
Median duration [μs] (25-75 percentile) 68 (0 - 261)

Event ID: 7518.240922035736.wav

Time: 2024-09-22 03:57UTC to 2024-09-22 04:03UTC

Event contains 844 original clicks, 422 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 261 clicks) .

Median statistics for 261 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.75
Median 10dB Center Frequency [kHz] 6.69
Median 3dB Bandwidth [kHz] (lower-upper) 1.04 (6.17 - 7.36)
Median 10dB Bandwidth [kHz] (lower-upper) 3.43 (4.91 - 8.45)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922040336.wav

Time: 2024-09-22 04:03UTC to 2024-09-22 04:09UTC

Event contains 572 original clicks, 286 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 171 clicks) .

Median statistics for 171 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.74
Median 10dB Center Frequency [kHz] 6.81
Median 3dB Bandwidth [kHz] (lower-upper) 1.18 (6.03 - 7.3)
Median 10dB Bandwidth [kHz] (lower-upper) 3.45 ( 4.8 - 8.66)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922040936.wav

Time: 2024-09-22 04:09UTC to 2024-09-22 04:15UTC

Event contains 832 original clicks, 416 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 269 clicks) .

Median statistics for 269 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.99
Median 10dB Center Frequency [kHz] 6.73
Median 3dB Bandwidth [kHz] (lower-upper) 1.29 (6.08 - 7.72)
Median 10dB Bandwidth [kHz] (lower-upper) 3.95 (4.66 - 8.79)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922041536.wav

Time: 2024-09-22 04:15UTC to 2024-09-22 04:21UTC

Event contains 1324 original clicks, 662 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 454 clicks) .

Median statistics for 454 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.03
Median 10dB Center Frequency [kHz] 6.99
Median 3dB Bandwidth [kHz] (lower-upper) 1.04 (6.32 - 7.61)
Median 10dB Bandwidth [kHz] (lower-upper) 3.34 ( 4.9 - 8.6)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922042136.wav

Time: 2024-09-22 04:21UTC to 2024-09-22 04:27UTC

Event contains 2352 original clicks, 1176 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 435 clicks) .

Median statistics for 435 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.61
Median 10dB Center Frequency [kHz] 6.7
Median 3dB Bandwidth [kHz] (lower-upper) 0.98 (5.88 - 7.27)
Median 10dB Bandwidth [kHz] (lower-upper) 3.36 (4.57 - 8.64)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922042736.wav

Time: 2024-09-22 04:27UTC to 2024-09-22 04:33UTC

Event contains 1398 original clicks, 699 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 262 clicks) .

Median statistics for 262 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.25
Median 10dB Center Frequency [kHz] 6.4
Median 3dB Bandwidth [kHz] (lower-upper) 1.14 (5.57 - 6.94)
Median 10dB Bandwidth [kHz] (lower-upper) 3.67 (4.37 - 8.49)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922043336.wav

Time: 2024-09-22 04:33UTC to 2024-09-22 04:39UTC

Event contains 876 original clicks, 438 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 276 clicks) .

Median statistics for 276 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.74
Median 10dB Center Frequency [kHz] 6.69
Median 3dB Bandwidth [kHz] (lower-upper) 1.2 (6.12 - 7.47)
Median 10dB Bandwidth [kHz] (lower-upper) 3.51 (4.82 - 8.61)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922043936.wav

Time: 2024-09-22 04:39UTC to 2024-09-22 04:45UTC

Event contains 934 original clicks, 467 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 274 clicks) .

Median statistics for 274 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.73
Median 10dB Center Frequency [kHz] 6.76
Median 3dB Bandwidth [kHz] (lower-upper) 1.12 (6.19 - 7.41)
Median 10dB Bandwidth [kHz] (lower-upper) 3.67 (4.76 - 8.73)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922044536.wav

Time: 2024-09-22 04:45UTC to 2024-09-22 04:51UTC

Event contains 988 original clicks, 494 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 289 clicks) .

Median statistics for 289 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.08
Median 10dB Center Frequency [kHz] 7.33
Median 3dB Bandwidth [kHz] (lower-upper) 1.2 (6.25 - 7.9)
Median 10dB Bandwidth [kHz] (lower-upper) 3.99 (4.69 - 9.44)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922045136.wav

Time: 2024-09-22 04:51UTC to 2024-09-22 04:57UTC

Event contains 1842 original clicks, 921 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 671 clicks) .

Median statistics for 671 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.04
Median 10dB Center Frequency [kHz] 6.97
Median 3dB Bandwidth [kHz] (lower-upper) 1.02 (6.49 - 7.64)
Median 10dB Bandwidth [kHz] (lower-upper) 3.36 (5.16 - 8.68)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922045736.wav

Time: 2024-09-22 04:57UTC to 2024-09-22 05:03UTC

Event contains 2024 original clicks, 1012 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 743 clicks) .

Median statistics for 743 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.97
Median 10dB Center Frequency [kHz] 7.13
Median 3dB Bandwidth [kHz] (lower-upper) 1.04 (6.39 - 7.7)
Median 10dB Bandwidth [kHz] (lower-upper) 3.37 (5.17 - 8.86)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922050336.wav

Time: 2024-09-22 05:03UTC to 2024-09-22 05:09UTC

Event contains 1604 original clicks, 802 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 653 clicks) .

Median statistics for 653 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.86
Median 10dB Center Frequency [kHz] 7
Median 3dB Bandwidth [kHz] (lower-upper) 1.02 (6.18 - 7.53)
Median 10dB Bandwidth [kHz] (lower-upper) 3.11 (5.32 - 8.51)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922050936.wav

Time: 2024-09-22 05:09UTC to 2024-09-22 05:15UTC

Event contains 754 original clicks, 377 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 232 clicks) .

Median statistics for 232 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.76
Median 10dB Center Frequency [kHz] 6.63
Median 3dB Bandwidth [kHz] (lower-upper) 1.18 (6.06 - 7.44)
Median 10dB Bandwidth [kHz] (lower-upper) 3.47 (4.59 - 8.56)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922051536.wav

Time: 2024-09-22 05:15UTC to 2024-09-22 05:21UTC

Event contains 686 original clicks, 343 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 231 clicks) .

Median statistics for 231 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.36
Median 10dB Center Frequency [kHz] 7.34
Median 3dB Bandwidth [kHz] (lower-upper) 1.13 (6.66 - 8.1)
Median 10dB Bandwidth [kHz] (lower-upper) 3.66 (5.36 - 9.28)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922052136.wav

Time: 2024-09-22 05:21UTC to 2024-09-22 05:27UTC

Event contains 1440 original clicks, 720 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 531 clicks) .

Median statistics for 531 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.92
Median 10dB Center Frequency [kHz] 6.88
Median 3dB Bandwidth [kHz] (lower-upper) 0.967 (6.32 - 7.52)
Median 10dB Bandwidth [kHz] (lower-upper) 3.01 ( 5.3 - 8.4)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922052736.wav

Time: 2024-09-22 05:27UTC to 2024-09-22 05:33UTC

Event contains 894 original clicks, 447 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 301 clicks) .

Median statistics for 301 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.44
Median 10dB Center Frequency [kHz] 7.41
Median 3dB Bandwidth [kHz] (lower-upper) 1.1 (6.69 - 8.17)
Median 10dB Bandwidth [kHz] (lower-upper) 3.52 (5.54 - 9.42)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922053336.wav

Time: 2024-09-22 05:33UTC to 2024-09-22 05:39UTC

Event contains 740 original clicks, 370 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 273 clicks) .

Median statistics for 273 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.25
Median 10dB Center Frequency [kHz] 6.24
Median 3dB Bandwidth [kHz] (lower-upper) 1.16 (5.57 - 6.88)
Median 10dB Bandwidth [kHz] (lower-upper) 3.42 (4.33 - 8.33)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922053936.wav

Time: 2024-09-22 05:39UTC to 2024-09-22 05:45UTC

Event contains 1506 original clicks, 753 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 632 clicks) .

Median statistics for 632 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7
Median 10dB Center Frequency [kHz] 6.91
Median 3dB Bandwidth [kHz] (lower-upper) 0.985 (6.38 - 7.62)
Median 10dB Bandwidth [kHz] (lower-upper) 2.59 (5.57 - 8.36)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922054536.wav

Time: 2024-09-22 05:45UTC to 2024-09-22 05:51UTC

Event contains 1408 original clicks, 704 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 592 clicks) .

Median statistics for 592 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.05
Median 10dB Center Frequency [kHz] 7.09
Median 3dB Bandwidth [kHz] (lower-upper) 0.941 (6.62 - 7.53)
Median 10dB Bandwidth [kHz] (lower-upper) 2.77 (5.52 - 8.6)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922055136.wav

Time: 2024-09-22 05:51UTC to 2024-09-22 05:57UTC

Event contains 536 original clicks, 268 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 170 clicks) .

Median statistics for 170 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.41
Median 10dB Center Frequency [kHz] 6.68
Median 3dB Bandwidth [kHz] (lower-upper) 1.44 (5.57 - 7.21)
Median 10dB Bandwidth [kHz] (lower-upper) 3.84 (4.18 - 8.63)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922060336.wav

Time: 2024-09-22 06:03UTC to 2024-09-22 06:09UTC

Event contains 708 original clicks, 354 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 261 clicks) .

Median statistics for 261 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.61
Median 10dB Center Frequency [kHz] 6.75
Median 3dB Bandwidth [kHz] (lower-upper) 1.11 (5.96 - 7.14)
Median 10dB Bandwidth [kHz] (lower-upper) 3.27 (4.81 - 8.6)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922060936.wav

Time: 2024-09-22 06:09UTC to 2024-09-22 06:15UTC

Event contains 566 original clicks, 283 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 172 clicks) .

Median statistics for 172 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.71
Median 10dB Center Frequency [kHz] 6.71
Median 3dB Bandwidth [kHz] (lower-upper) 1.12 (5.86 - 7.55)
Median 10dB Bandwidth [kHz] (lower-upper) 4.16 ( 4.5 - 8.8)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922061536.wav

Time: 2024-09-22 06:15UTC to 2024-09-22 06:21UTC

Event contains 894 original clicks, 447 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 324 clicks) .

Median statistics for 324 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7
Median 3dB Center Frequency [kHz] 6.95
Median 10dB Center Frequency [kHz] 7.06
Median 3dB Bandwidth [kHz] (lower-upper) 1.03 ( 6.4 - 7.66)
Median 10dB Bandwidth [kHz] (lower-upper) 3.33 (5.11 - 8.69)
Median duration [μs] (25-75 percentile) 0 (0 - 14)

Event ID: 7518.240922062136.wav

Time: 2024-09-22 06:21UTC to 2024-09-22 06:27UTC

Event contains 790 original clicks, 395 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 313 clicks) .

Median statistics for 313 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.77
Median 10dB Center Frequency [kHz] 6.6
Median 3dB Bandwidth [kHz] (lower-upper) 1.48 ( 5.9 - 7.61)
Median 10dB Bandwidth [kHz] (lower-upper) 4.07 (4.41 - 8.78)
Median duration [μs] (25-75 percentile) 2.6 (0 - 480)

Event ID: 7518.240922063336.wav

Time: 2024-09-22 06:33UTC to 2024-09-22 06:39UTC

Event contains 1100 original clicks, 550 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 457 clicks) .

Median statistics for 457 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.36
Median 10dB Center Frequency [kHz] 6.29
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (5.46 - 7.28)
Median 10dB Bandwidth [kHz] (lower-upper) 3.6 (4.14 - 8.63)
Median duration [μs] (25-75 percentile) 326 (0 - 1000)

Event ID: 7518.240922063936.wav

Time: 2024-09-22 06:39UTC to 2024-09-22 06:45UTC

Event contains 848 original clicks, 424 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 265 clicks) .

Median statistics for 265 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.41
Median 10dB Center Frequency [kHz] 6.67
Median 3dB Bandwidth [kHz] (lower-upper) 1.3 (5.56 - 7.24)
Median 10dB Bandwidth [kHz] (lower-upper) 3.96 (4.45 - 8.57)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922064536.wav

Time: 2024-09-22 06:45UTC to 2024-09-22 06:51UTC

Event contains 726 original clicks, 363 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 236 clicks) .

Median statistics for 236 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.17
Median 10dB Center Frequency [kHz] 7.36
Median 3dB Bandwidth [kHz] (lower-upper) 1.3 (6.35 - 8.01)
Median 10dB Bandwidth [kHz] (lower-upper) 4.25 (5.06 - 9.49)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922065736.wav

Time: 2024-09-22 06:57UTC to 2024-09-22 07:03UTC

Event contains 612 original clicks, 306 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 210 clicks) .

Median statistics for 210 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.47
Median 10dB Center Frequency [kHz] 6.57
Median 3dB Bandwidth [kHz] (lower-upper) 1.14 (5.75 - 7.14)
Median 10dB Bandwidth [kHz] (lower-upper) 3.5 (4.44 - 8.79)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922070336.wav

Time: 2024-09-22 07:03UTC to 2024-09-22 07:09UTC

Event contains 894 original clicks, 447 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 352 clicks) .

Median statistics for 352 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.29
Median 10dB Center Frequency [kHz] 7.1
Median 3dB Bandwidth [kHz] (lower-upper) 1.41 (6.38 - 8.17)
Median 10dB Bandwidth [kHz] (lower-upper) 4.23 (4.41 - 9.29)
Median duration [μs] (25-75 percentile) 87 (0 - 2348)

Event ID: 7518.240922070936.wav

Time: 2024-09-22 07:09UTC to 2024-09-22 07:15UTC

Event contains 1254 original clicks, 627 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 495 clicks) .

Median statistics for 495 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.11
Median 10dB Center Frequency [kHz] 7.09
Median 3dB Bandwidth [kHz] (lower-upper) 1.38 (6.24 - 8.02)
Median 10dB Bandwidth [kHz] (lower-upper) 3.92 (4.84 - 9.22)
Median duration [μs] (25-75 percentile) 0 (0 - 1592)

Event ID: 7518.240922071536.wav

Time: 2024-09-22 07:15UTC to 2024-09-22 07:21UTC

Event contains 792 original clicks, 396 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 273 clicks) .

Median statistics for 273 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.66
Median 10dB Center Frequency [kHz] 6.95
Median 3dB Bandwidth [kHz] (lower-upper) 1.15 (5.81 - 7.61)
Median 10dB Bandwidth [kHz] (lower-upper) 3.56 (4.82 - 9.23)
Median duration [μs] (25-75 percentile) 0 (0 - 3)

Event ID: 7518.240922072136.wav

Time: 2024-09-22 07:21UTC to 2024-09-22 07:27UTC

Event contains 980 original clicks, 490 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 345 clicks) .

Median statistics for 345 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.07
Median 10dB Center Frequency [kHz] 7.46
Median 3dB Bandwidth [kHz] (lower-upper) 1.19 (6.31 - 7.75)
Median 10dB Bandwidth [kHz] (lower-upper) 3.38 (5.32 - 9.31)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922072736.wav

Time: 2024-09-22 07:27UTC to 2024-09-22 07:33UTC

Event contains 1612 original clicks, 806 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 640 clicks) .

Median statistics for 640 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.2
Median 10dB Center Frequency [kHz] 7.26
Median 3dB Bandwidth [kHz] (lower-upper) 1.03 (6.57 - 7.75)
Median 10dB Bandwidth [kHz] (lower-upper) 3.06 (5.35 - 8.95)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922073336.wav

Time: 2024-09-22 07:33UTC to 2024-09-22 07:39UTC

Event contains 768 original clicks, 384 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 248 clicks) .

Median statistics for 248 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.62
Median 10dB Center Frequency [kHz] 6.7
Median 3dB Bandwidth [kHz] (lower-upper) 1.16 (5.97 - 7.47)
Median 10dB Bandwidth [kHz] (lower-upper) 3.77 (4.56 - 8.61)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922073936.wav

Time: 2024-09-22 07:39UTC to 2024-09-22 07:45UTC

Event contains 1326 original clicks, 663 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 488 clicks) .

Median statistics for 488 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.51
Median 10dB Center Frequency [kHz] 7.54
Median 3dB Bandwidth [kHz] (lower-upper) 1.07 (6.83 - 8.15)
Median 10dB Bandwidth [kHz] (lower-upper) 3.68 (5.63 - 9.4)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922074536.wav

Time: 2024-09-22 07:45UTC to 2024-09-22 07:51UTC

Event contains 1886 original clicks, 943 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 669 clicks) .

Median statistics for 669 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.5
Median 10dB Center Frequency [kHz] 6.66
Median 3dB Bandwidth [kHz] (lower-upper) 1.22 ( 5.8 - 7.22)
Median 10dB Bandwidth [kHz] (lower-upper) 3.81 (4.52 - 8.7)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922075136.wav

Time: 2024-09-22 07:51UTC to 2024-09-22 07:57UTC

Event contains 2054 original clicks, 1027 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 849 clicks) .

Median statistics for 849 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.9
Median 10dB Center Frequency [kHz] 6.12
Median 3dB Bandwidth [kHz] (lower-upper) 1.13 (5.04 - 6.64)
Median 10dB Bandwidth [kHz] (lower-upper) 3.12 (3.72 - 7.97)
Median duration [μs] (25-75 percentile) 0 (0 - 420)

Event ID: 7518.240922080936.wav

Time: 2024-09-22 08:09UTC to 2024-09-22 08:15UTC

Event contains 546 original clicks, 273 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 198 clicks) .

Median statistics for 198 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.81
Median 10dB Center Frequency [kHz] 6.63
Median 3dB Bandwidth [kHz] (lower-upper) 1.31 (6.03 - 7.79)
Median 10dB Bandwidth [kHz] (lower-upper) 4.19 (4.21 - 9.08)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7518.240922081536.wav

Time: 2024-09-22 08:15UTC to 2024-09-22 08:21UTC

Event contains 824 original clicks, 412 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 312 clicks) .

Median statistics for 312 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.47
Median 10dB Center Frequency [kHz] 6.69
Median 3dB Bandwidth [kHz] (lower-upper) 1.19 (5.77 - 7.33)
Median 10dB Bandwidth [kHz] (lower-upper) 3.18 (4.87 - 8.55)
Median duration [μs] (25-75 percentile) 0 (0 - 376)

Event ID: 7518.240922085136.wav

Time: 2024-09-22 08:51UTC to 2024-09-22 08:57UTC

Event contains 406 original clicks, 203 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 144 clicks) .

Median statistics for 144 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.72
Median 10dB Center Frequency [kHz] 7.71
Median 3dB Bandwidth [kHz] (lower-upper) 1.09 (7.14 - 8.08)
Median 10dB Bandwidth [kHz] (lower-upper) 3.36 ( 5.6 - 9.26)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922090336.wav

Time: 2024-09-22 09:03UTC to 2024-09-22 09:09UTC

Event contains 622 original clicks, 311 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 240 clicks) .

Median statistics for 240 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7
Median 3dB Center Frequency [kHz] 7.01
Median 10dB Center Frequency [kHz] 7
Median 3dB Bandwidth [kHz] (lower-upper) 1.03 (6.39 - 7.41)
Median 10dB Bandwidth [kHz] (lower-upper) 3.29 (5.26 - 8.46)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922090936.wav

Time: 2024-09-22 09:09UTC to 2024-09-22 09:15UTC

Event contains 526 original clicks, 263 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 152 clicks) .

Median statistics for 152 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.05
Median 10dB Center Frequency [kHz] 6.2
Median 3dB Bandwidth [kHz] (lower-upper) 1.03 (5.48 - 6.74)
Median 10dB Bandwidth [kHz] (lower-upper) 3.37 (4.27 - 7.89)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7518.240922120336.wav

Time: 2024-09-22 12:03UTC to 2024-09-22 12:09UTC

Event contains 994 original clicks, 497 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 255 clicks) .

Median statistics for 255 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.67
Median 10dB Center Frequency [kHz] 5.87
Median 3dB Bandwidth [kHz] (lower-upper) 1.33 (4.92 - 6.42)
Median 10dB Bandwidth [kHz] (lower-upper) 3.96 (3.62 - 7.99)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7518.240922120936.wav

Time: 2024-09-22 12:09UTC to 2024-09-22 12:15UTC

Event contains 7170 original clicks, 3585 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2191 clicks) .

Median statistics for 2191 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.46
Median 10dB Center Frequency [kHz] 6.83
Median 3dB Bandwidth [kHz] (lower-upper) 1.16 ( 5.8 - 7.2)
Median 10dB Bandwidth [kHz] (lower-upper) 3.87 ( 4.2 - 9.1)
Median duration [μs] (25-75 percentile) 162 (13 - 1000)

Clean up Event Table

# clean up the event table
evTable <- evTable[evTable$keep == TRUE,]
evTable <- subset(evTable, select = -keep)
# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets, 
                                    paste0('eventTable_', params$mission, '_', 
                                           params$drift, '_', Sys.Date(),'.csv')))

#dbDisconnect(dbFile)

After additional filtering based on median peak frequency, 154 events events of 1562 original events remain.